Socket
Socket
Sign inDemoInstall

gnar

Package Overview
Dependencies
47
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gnar

Stream-based wrapper for the League of Legends API


Version published
Maintainers
1
Install size
3.72 MB
Created

Readme

Source

gnar

A wrapper for the official League of Legends API.

Getting Started

  1. obtain an API key from https://developer.riotgames.com by logging in with your League of Legends Account

  2. install gnar as npm module (use --save to persist this to your package.json)

npm install gnar
  1. require gnar in your app
var gnar = require('gnar')('<your-api-key>', '<your region>');
// you can change api-key and region later with
//   gnar.configuration.setKey('<new-key>') and
//   gnar.configuration.setRegion('<new-region>')
  1. use gnar as you would expect
gnar.summoners.by_name('refridgerator').pipe(process.stdout)
// all stream-based! pipe to what you need
  1. 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');
// easiest way to cache (not fastest!): write to file system
gnar.lol_static_data.champion.all().pipe(fs.createWriteStream('cache/champion.json'));
// then retrieve it again
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.

Keywords

FAQs

Last updated on 04 Sep 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc