A NodeJS API for csgolounge.com
npm install --save csgolounge-api
var lounge = require('csgolounge-api');
lounge.getMatches(function(matches){
console.log(matches);
});
lounge.getMatch(matchId, function(match){
console.log(match);
});
lounge.getStream(matchId, language, function(stream){
console.log(stream)
});