Package Exports
- steam-community
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 (steam-community) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Steam Community
Easily access publicly available information on the Steam community website. This module retrieves a user's XML from the Steam Community site and returns a parsed JSON object. Awesome!
Install
npm install steam-community
Use
Get your 64bit steam ID and plug it in. You'll get back an object with all the infos.
var steam = require('steam-community');
steam.user("12345678901234567", function(err, user){
console.log(util.inspect(user, false, 4, true));
});