0.2.4 • Published 9 years ago

steamidconvert v0.2.4

Weekly downloads
22
License
BSD
Repository
github
Last release
9 years ago

SteamID Converter

A module for node that converts a 64bit SteamID to a text STEAM_x:y:z format and vice versa

npm install steamidconvert
var steam = require('steamidconvert')()

Convert SteamID into SteamID64

steam.convertTo64('STEAM_0:0:6114800') //76561197972495328

Convert SteamID64 into SteamID

steam.convertToText('76561197972495328') //STEAM_0:0:6114800

Convert Vanity into SteamID64

This is for converting custom URLs to SteamID64

//e.g. http://steamcommunity.com/id/panvertigo/
var steam = require('steamidconvert')(/*your steam api key*/)
steam.convertVanity('panvertigo', function(err, res) {
  if (err) console.log(err)
  else console.log(res) //76561198000670105
})

Convert old SteamID to new SteamID format

steam.convertToNewFormat('STEAM_0:0:6114800') //[U:1:12229600]
0.2.4

9 years ago

0.2.3

10 years ago

0.2.2

11 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.0

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.0

11 years ago