get-steam-user-fixed

1.0.6 • Public • Published

get-steam-user-fixed

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. Edit by Guillerp (ALL RIGHTS RESERVED TO JAMIE NICHOLS) using regedit to find the correct path.

💿 Installation

npm i get-steam-user

📖 Usage

getUserInfo

[returns an array of users with usernames and steamids]

var gsu = require('get-steam-user-fixed');
gsu.getUserInfo(function(user_info){
   console.log(user_info); 
});

response

[ { steamid: 'xxxxxxxxxxxx', username: 'usename' } ]

getSteamId

[returns an array of users steamids]

var gsu = require('get-steam-user-fixed');
gsu.getSteamId(function(steamids){
   console.log(steamids); 
});

response

[ 'xxxxxxxxxxxx' ] //xs being the steam id

getUsername

[returns an array of usernames]

var gsu = require('get-steam-user-fixed');
gsu.getUsername(function(usernames){
   console.log(usernames); 
});

response

[ 'a_username' ]

Dependencies (4)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i get-steam-user-fixed

    Weekly Downloads

    1

    Version

    1.0.6

    License

    ISC

    Unpacked Size

    5 kB

    Total Files

    3

    Last publish

    Collaborators

    • guillerp