idler
v0.1.1
Published
Easy Idling for your Steam Account with Node.js
Downloads
23
Maintainers
Readme
Easy Idling for your Steam Account with Node.js
Idle Your Steam Account Easily.
Possible Login Types
- twoFactorCode (your steam account shared secret)
- authCode (your steam account auth code)
- Manual (this would prompt for steamGuard Code on the terminal)
Idler Class Parameters
- Username (Mandatory)
- Password (Mandatory)
- gameId (Mandatory)
- Method Object (Can have any of the three following values)
- twoFactorCode
- value (your shared secret)
- authCode
- value (your email auth code)
- Manual (this would prompt for steamGuard Code on the terminal)
- twoFactorCode
How to Use?
var Idler = require('idler');
var user = new Idler('username', 'password', 'gameId', {method: 'twoFactorCode', value: 'YourSharedSecret'})
user.idle().then(User => {
// on login it would send the User Object
}).catch(err => {
// on err it would send the Err Object
throw err;
})
License
Copyright to Daksh Miglani | Licensed to MIT.