Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.88 KB

README.md

File metadata and controls

39 lines (31 loc) · 1.88 KB

Rocket League Stats API - NodeJS Library


Discord server NPM version NPM downloads Dependencies

NPM info

This is the official NodeJS client library for the RocketLeagueStats API.

Installation

Node.js 8.0.0 or newer is required.
Ignore any warnings about unmet peer dependencies, as they're all optional.

Simply execute npm install rls-api to add the library to your coding enviroment.

Then add the following lines of code to the start of your query while making careful consideration to not exposing your API Key.

var rls = require('rls-api');

var client = new rls.Client({
    token: "REPLACE_ME_WITH_YOUR_API_KEY"
});

After that, you are ready to go! You can begin making queries to https://api.rocketleaguestats.com/!

Links