csgolounge-api
v0.0.8
Published
A NodeJS API for csgolounge.com
Downloads
8
Readme
CSGO Lounge API
A NodeJS API for csgolounge.com
How to install
npm install --save csgolounge-api
How to use
var lounge = require('csgolounge-api');
lounge.getMatches(function(matches){
console.log(matches);
});
lounge.getMatch(matchId, function(match){
console.log(match);
});