Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 551 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 551 Bytes

CSGO Lounge API

A NodeJS API for csgolounge.com

npm

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);
});

lounge.getStream(matchId, language, function(stream){
    console.log(stream)
    
});