Gathering detailed insights and metrics for @omegion1npm/ipsum-illo-eaque
Gathering detailed insights and metrics for @omegion1npm/ipsum-illo-eaque
npm install @omegion1npm/ipsum-illo-eaque
Typescript
Module System
Node Version
NPM Version
61.7
Supply Chain
48.1
Quality
75.7
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
185
Last Day
1
Last Week
3
Last Month
20
Last Year
185
MIT License
2,351 Commits
1 Branches
1 Contributors
Updated on Feb 18, 2025
Latest Version
1.0.0
Package Id
@omegion1npm/ipsum-illo-eaque@1.0.0
Unpacked Size
16.25 kB
Size
6.39 kB
File Count
10
NPM Version
10.5.0
Node Version
20.12.2
Published on
Apr 30, 2024
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-50%
3
Compared to previous week
Last Month
100%
20
Compared to previous month
Last Year
0%
185
Compared to previous year
28
A Node.js wrapper for the Steam Community Market API.
Using npm:
1$ npm install steam-market-fetcher
Using yarn:
1$ yarn add steam-market-fetcher
Note: Make sure you've supplied a valid steamLoginSecure cookie
in the test.js file.
Using npm:
1$ npm test
Using yarn:
1$ yarn test
CommonJS
1const SteamMarketFetcher = require('steam-market-fetcher');
ES6's import
statement.1import SteamMarketFetcher from 'steam-market-fetcher';
currency
and format
options.1const market = new SteamMarketFetcher({
2 currency: 'EUR',
3 format: 'json'
4});
callbacks
.1market.getItemPrice({ 2 market_hash_name: 'AK-47 | Redline (Field-Tested)', 3 appid: 730, 4 callback: (err, price) => { 5 if (err) throw err; 6 7 console.log(price); 8 } 9});
async
/await
.1(async () => { 2 try { 3 const image = await market.getItemImage({ 4 market_hash_name: 'Mann Co. Supply Crate Key', 5 appid: 440 6 }); 7 8 console.log(image); 9 } catch (error) { 10 console.error('An error occurred: ', error); 11 } 12})();
There are some more examples available in the test directory.
Version 2.1.0 includes minor changes, please see the newly updated Wiki pages for further documentation.
Copyright 2023, Simon Sørensen
No vulnerabilities found.
No security vulnerabilities found.