lolapi icon indicating copy to clipboard operation
lolapi copied to clipboard

NodeJS wrapper of the official League of Legends public API with an integrated cache support.

Results 2 lolapi issues
Sort by recently updated
recently updated
newest added

```javascript var options = { rankedQueues: ['TEAM_BUILDER_DRAFT_RANKED_5x5', 'RANKED_SOLO_5X5', 'RANKED_TEAM_5X5'], beginIndex: 0, endIndex: 10 }; lolapi.MatchList.getBySummonerId(summonerId, options, function (error, matches) { // got the matches! console.log(matches); }); ``` Most time I...