0.1.1 • Published 2 years ago

lol-api-wrapper v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

lol-api-wrapper

NodeJS wrapper for the League of Legends and Summoner parts of the RIOT Games API (https://developer.riotgames.com/)

Documentation

This wrapper is still a work in progress. It currently implements the following APIs:

Usage

sh npm install lol-api-wrapper

const { RiotApiWrapper } = require("lol-api-wrapper");

const api = new RiotApiWrapper("RIOT-API-KEY");

// Get summoner by name
api.getSummonerByName("EUW1", "SummonerName")
    .then((summoner) => {
        console.log(summoner);
    })
    .catch((err) => {
        console.log(err);
    });
0.1.1

2 years ago

0.1.0

2 years ago

0.0.4

3 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago