Package Exports
- steam-market-fetcher
- steam-market-fetcher/index.js
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-market-fetcher) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
steam-market-fetcher
A Node.js wrapper for the Steam Community Market API.
Installation
Using npm:
$ npm install steam-market-fetcherUsing yarn:
$ yarn add steam-market-fetcherTesting
Note: Make sure you've supplied a valid steamLoginSecure cookie in the test.js file.
$ npm testExamples
Importing with CommonJS
const SteamMarketFetcher = require('steam-market-fetcher');or with ES6's import statement.
import SteamMarketFetcher from 'steam-market-fetcher';Instantiating with the currency and format options.
const Fetcher = new SteamMarketFetcher({
currency: 'EUR',
format: 'json'
});Asynchronous requests with callbacks.
Fetcher.getItemPrice({
market_hash_name: 'AK-47 | Redline (Field-Tested)',
appid: 730,
callback: (err, price) => {
if (err) throw err;
console.log(price);
}
});Asynchronous requests with async/await.
(async () => {
try {
const image = await Fetcher.getItemImage({
market_hash_name: 'Mann Co. Supply Crate Key',
appid: 440
});
console.log(image);
} catch (error) {
console.error('An error occurred: ', error);
}
})();Documentation
Version 1.6.0 includes breaking changes, please see the newly updated Wiki pages for further documentation.
License
Copyright 2021, Simon Sørensen