
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Steam Web API for node
A Steam API Key is needed to use this module.
To install:
npm install steamAPI
To use:
var steam = require('steamAPI').configure('yourSteamAPIKey');
//Returns a JSON object of Robin Walker's TF2 Backpack
steam.getPlayerItems(console.log);
All methods accept an optional object for parameters, and require a callback function.
steam.getPlayerItems({
format: 'json', // default - ['json', 'xml', 'vdf']
gameid: '440', // default - see valve documentation for more gameids
steamid: '76561197960435530', // default - Robin Walker's steam id <3
version: '0001' // default
}, console.log); // function(err, result){}
You can change all of the default settings when initializing the module.
var steam = require('steamAPI').configure({
format: 'json',
steamid: '76561197960435530',
steamids: ['76561197960435530'],
gameid: '440',
appid: '440',
count: '5',
language: 'en',
maxlength: '300',
version: '0001'
}, 'yourSteamAPIKey');
This method uses an array of 64bit Steamids in the query. The Steam Web API limits the request to 100 steamids.
steam.getPlayerSummaries({
steamids: ['76561197960435530']
}, console.log);
By default, all methods will use version 0001. Currently the Steam Web API (non-TF2) methods support version 0002. To use the newest version please specify within the parameter object.
steam.getNewsForApp({
appid: '440',
version: '0002'
}, console.log);
FAQs
Steam Web / TF2 API
The npm package steamAPI receives a total of 2 weekly downloads. As such, steamAPI popularity was classified as not popular.
We found that steamAPI demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.