2.1.3 • Published 2 years ago
steam-market-fetcher v2.1.3
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.
Using npm:
$ npm testUsing yarn:
$ yarn 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 market = new SteamMarketFetcher({
currency: 'EUR',
format: 'json'
});Asynchronous requests with callbacks.
market.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 market.getItemImage({
market_hash_name: 'Mann Co. Supply Crate Key',
appid: 440
});
console.log(image);
} catch (error) {
console.error('An error occurred: ', error);
}
})();There are some more examples available in the test directory.
Documentation
Version 2.1.0 includes minor changes, please see the newly updated Wiki pages for further documentation.
License
Copyright 2023, Simon Sørensen
2.1.3
2 years ago
2.1.2
2 years ago
2.1.1
2 years ago
2.1.0
2 years ago
1.8.0
3 years ago
2.0.2
3 years ago
2.0.1
3 years ago
2.0.0
3 years ago
1.7.6
3 years ago
1.7.5
3 years ago
1.7.4
3 years ago
1.7.3
3 years ago
1.7.2
3 years ago
1.7.1
3 years ago
1.7.0
4 years ago
1.6.0
4 years ago
1.5.0
5 years ago
1.4.5
5 years ago
1.4.0
5 years ago
1.3.5
5 years ago
1.3.0
6 years ago
1.2.0
6 years ago
1.1.5
6 years ago
1.1.2
6 years ago
1.1.0
6 years ago
1.0.0
6 years ago