gnar
A wrapper for the official League of Legends API.
Getting Started
-
obtain an API key from https://developer.riotgames.com by logging in with your League of Legends Account
-
install gnar as npm module (use --save
to persist this to your package.json)
npm install gnar
- require gnar in your app
var gnar = require('gnar')('<your-api-key>', '<your region>');
- use gnar as you would expect
gnar.summoners.by_name('refridgerator').pipe(process.stdout)
- as API requests are limited (to 10 per 10s, 500 per 10min by default) you may want to cache your results like
var cache = require('stream-cache'), fs = require('fs');
gnar.lol_static_data.champion.all().pipe(fs.createWriteStream('cache/champion.json'));
var champion = fs.createReadStream('cache/champion.json');
API documentation
As this is a pure wrapper for the League of Legends API, please refer the full documentation for details on the API endpoints.
Method parameters (like id
, summonerId
) are parsed to strings (automatically by JavaScript) and inserted into the request url. Where the League of Legends API allows multiple entries (where the parameter is in plural, like summonerIds
, teamIds
) you can either pass a string (which is directly inserted into the url) or an array (that will be joined with ,
s).
champion
game
league
lol_static_data
match
matchhistory
stats
summoner
team
License
The MIT License (MIT)
Copyright (c) 2014 Dominik Schreiber
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.