Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 584 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 584 Bytes

CSGO Lounge API

A NodeJS API for csgolounge.com

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