JSPM

steam-inventory

1.0.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q46505F
  • License ISC

The package helps you to load user Steam inventory without any limits

Package Exports

  • steam-inventory

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (steam-inventory) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

steam-inventory

This package helps you to load user steam inventory without limits and paying for it. It is made for fast items loading, using Steam official API.

Installing repository

npm install steam-inventory

Adding repository to your code

const li = require("steam-inventory");

Getting user Steam inventory

li("XXXXXXXXXXXXXXXXX", 730, 2, (items, error) => {
  if(error) {
    return console.log("Error, while getting user items. Please check settings or user inventory is hidden.");
  } else {
    // Write your code here...
  }
});