idler

0.1.1 • Public • Published

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.

Package Sidebar

Install

npm i idler

Weekly Downloads

10

Version

0.1.1

License

MIT

Last publish

Collaborators

  • dakshmiglani