npm.io
0.1.1 • Published 8 years ago

idler

Licence
MIT
Version
0.1.1
Deps
2
Vulns
0
Weekly
0
Stars
3

Easy Idling for your Steam Account with Node.js

Build Status GitHub license npm version

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)
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.