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...
}
});