Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 835 Bytes

File metadata and controls

38 lines (30 loc) · 835 Bytes

SteamAPI Node.JS Plugin

NPM

Contribution

If you notice something that can be improved, please open a pull request!

Instructions

  1. Install this plugin:
npm i @nnzo/steamapi
  1. Import it in your code:
import SteamAPI from '@nnzo/steamapi'
  1. Use it!
const api = new SteamAPI('API_KEY_HERE')

async function main() {
  let item = await api.getItem(730, "AK-47 | Redline (Field-Tested)")
  console.log(item)

  let items = await api.getItems(730)
  console.log(items)
}