
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
get-steam-user
Advanced tools
retrieves a list of steam users and their steam ids from the local machine. perfect for desktop apps looking to get information about a steam user.
npm i get-steam-user
[returns an array of users with usernames and steamids]
var gsu = require('get-steam-user');
gsu.getUserInfo(function(user_info){
console.log(user_info);
});
response
[ { steamid: 'xxxxxxxxxxxx', username: 'usename' } ]
[returns an array of users steamids]
var gsu = require('get-steam-user');
gsu.getSteamId(function(steamids){
console.log(steamids);
});
response
[ 'xxxxxxxxxxxx' ] //xs being the steam id
[returns an array of usernames]
var gsu = require('get-steam-user');
gsu.getUsername(function(usernames){
console.log(usernames);
});
response
[ 'a_username' ]
FAQs
Retrieves the local steam users and steam ids on a windows machine
The npm package get-steam-user receives a total of 5 weekly downloads. As such, get-steam-user popularity was classified as not popular.
We found that get-steam-user 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.