JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q35583F
  • License MIT

Easy Idling for your Steam Account with Node.js

Package Exports

  • idler

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (idler) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.