npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lol-esports-api-module

v0.9.1

Published

A wrapper for League of Legends' eSports API

Downloads

7

Readme

lol-esports-api-module

A wrapper module for League of Legends' eSports API. In the documentation below there will be references to the official methods used for each method.

All methods can be either used with a callback method or as a promise

Download

lol-esports-api-module is installable via:

  • GitHub git clone https://github.com/Pupix/lol-esports-api-module.git
  • npm: npm install lol-esports-api-module

Quick example

var API = require('lol-esports-api-module'),
    api = new API();

Using callbacks

    api.getTeamById(684, function (err, data) {
        console.log(data);
    });
    =>  {
            "name": "SK Telecom T1",
            "bio": "SKT T1 was once considered...",
            "roster": {
                "players0": {
                    "playerId": "692",
                    "name": "Faker",
                    "role": "Mid Lane",
                    "isStarter": 1
                },
                ...
            },
            "logoUrl": "http://riot-web-cdn.s3-us-west-1.amazonaws.com/lolesports/s3fs-public/skt.png",
            "profileUrl": "http://euw.lolesports.com/node/684",
            "teamPhotoUrl": "http://euw.lolesports.com/",
            "acronym": "SKT"
        }

Using promises

    api.getTeamById(684).then(function (data) {
        console.log(data);
    });
    =>  {
            "name": "SK Telecom T1",
            "bio": "SKT T1 was once considered ...",
            "roster": {
                "players0": {
                    "playerId": "692",
                    "name": "Faker",
                    "role": "Mid Lane",
                    "isStarter": 1
                },
                ...
            },
            "logoUrl": "http://riot-web-cdn.s3-us-west-1.amazonaws.com/lolesports/s3fs-public/skt.png",
            "profileUrl": "http://euw.lolesports.com/node/684",
            "teamPhotoUrl": "http://euw.lolesports.com/",
            "acronym": "SKT"
        }

Documentation

Whenever possible, if a configuration Object (referred as opt in the documentation) is not required the callback can be passed directly as first parameter to all methods.

Methods

Articles

Organizational

Static

Stats

Programming


Returns the latest news from lolesports.

Parameters

  1. [opt] {Object}
    • [opt.limit] {number | string} The maximum amount of news to return, if omitted, limit will default to 10, max of 50.
    • [opt.offset] {number | string} The numbers of articles to skip.
    • [opt.category] {number | string} The taxonomy identifier to filter results with. Omit to return all taxonomies.
    • [opt.language] {string} The language to limit the news articles to.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information on all existing leagues from lolesports.

Parameters

  1. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information about a league on lolesports.

Parameters

  1. id {number | string} ID of the league that needs to be fetched.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information on all existing tournaments from lolesports.

Parameters

  1. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information about a tournament on lolesports.

Parameters

  1. id {number | string} ID of the league that needs to be fetched.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns the schedule of matches for the specified tournament.

Parameters

  1. opt {Object}
    • opt.tournamentId {number | string} ID of the tournament you want to use.
    • [opt.teamId] {number | string} ID of a team you want to view the schedule for.
    • [opt.finished = true] {boolean} Whether or not to include finished games.
    • [opt.future = true] {boolean} Whether or not to include future games.
    • [opt.live = true] {boolean} Whether or not to include live games.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns the standings for the specified tournament.

Parameters

    • tournamentId {number | string} ID of the tournament to be fetched.
  1. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information on all existing series from lolesports.

Parameters

  1. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information about a series on lolesports.

Parameters

  1. id {number | string} ID of the series that needs to be fetched.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information about a match including name, tournament information, and live streams.

Parameters

  1. id {number | string} ID of the match that needs to be fetched.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information about a game including players, tournament information, and videos on demand.

Parameters

  1. id {number | string} ID of the game that needs to be fetched.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information about a team including players, name, and profile url on lolesports.

Parameters

  1. opt {Object}
    • opt.id {number | string} ID of the team that needs to be fetched.
    • [opt.expandPlayers] {boolean} Instead of each player element returning limited data, fully expand each player element to contain the results of a player api call for that player.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns basic information about a player including name, bio, and profile url.

Parameters

  1. id {number | string} ID of the player that needs to be fetched.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns fantasy stats for entire tournament.

Parameters

  1. opt {Object}
    • opt.tournamentId {number | string} Filter the stats returned to a particular tournament.
    • [opt.dateBegin] {number | string} Filter the start dates to a particular date.
      • Possible values: timestamp in seconds | DateString | GMTString | ISOString | TimeString | UTCString
    • [opt.dateEnd] {number | string} Filter the end dates to a particular date
      • Possible values: timestamp in seconds | DateString | GMTString | ISOString | TimeString | UTCString
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns the greatest stat for a particular tournament.

Parameters

  1. opt {Object}
    • opt.stat {string} The desired stat.
      • Possible values: "kda" | "killparticipation" | "gpm" | "totalgold" | "kills" | "deaths" | "assists" | "minionskilled"
    • opt.tournamentId {number | string} ID of the tournament you want to use.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns a team's stats for the entire tournament or tournament series.

Parameters

  1. opt {Object}
    • opt.teamId {number | string} The team that needs to be fetched.
    • opt.tournamentId {number | string} ID of the tournament you want to use, if omitted will return stats for all tournaments separated by tournament.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns a player's stats for the entire tournament or tournament series.

Parameters

  1. opt {Object}
    • opt.playerId {number | string} The player that needs to be fetched.
    • opt.tournamentId {number | string} ID of the tournament you want to use, if omitted will return stats for all tournaments separated by tournament.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns kda, average gold and gpm for all players of a specified tournament.

Parameters

  1. tournamentId {number | string} ID of the tournament you want to use.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns kda, average gold and gpm for one player in a specified tournament.

Parameters

  1. opt {Object}
    • opt.playerId {number | string} The player that needs to be fetched.
    • opt.tournamentId {number | string} ID of the tournament you want to use.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns kda, average gold and gpm on different champions for one player in a specified tournament.

Parameters

  1. opt {Object}
    • opt.playerId {number | string} The player that needs to be fetched.
    • opt.tournamentId {number | string} ID of the tournament you want to use.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns all programming blocks.

Parameters

  1. opt {Object}
    • [opt.method = 'all'] {string} The method to execute.
      • Possible values: "all" | "time" | "next" | "prev"
    • [opt.winner] {boolean} Include winner.
    • [opt.expandMatches] {boolean} Fully expand each matches element.
    • [opt.time] {number | string} The time to start for programming blocks.
    • [opt.limit] {number | string} The limit of the blocks to return. Only applicable to 'next' and 'prev' methods.
    • [opt.tournamentId] {number | string} The tournament to be fatched.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns a programming block.

Parameters

  1. opt {Object}
    • opt.id {number | string} The id of the programming block.
    • [opt.expandMatches] {boolean} Instead of each matches element returning a simple array of integers, fully expand each matches element to contain the results of a match api call for each match found.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.

Returns a weeks programming blocks.

Parameters

  1. opt {Object}
    • opt.date {string} The method to execute.
      • Possible values: Date following YYY-MM-DD format
    • [opt.offset] {number | string} Date offset.
  2. [callback] {Function} Optional function to be called after the server's response is received, with (error, data) as parameters.