New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

rocket-league-stats

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rocket-league-stats

Wrapper for rocket league stats.

  • 1.0.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
decreased by-53.85%
Maintainers
1
Weekly downloads
 
Created
Source

Rocket League Stats

CodeFactor NPM-Version NPM-Downloads Github Stars Issues

This a wrapper/scrapper of the TRNetwork site with Rocket League stats.

There are no dependencies nor API key required.

This project is built upon rocketleague.js

To install use:

npm i rocket-league-stats
pnpm add rocket-league-stats
bun a rocket-league-stats

Usage

Initialise

Basic
const api = new API(PLATFORM.Epic, 'lil McNugget');

Expiry

The data is by default stored for 60 seconds from the first request to limit the number of requests to the API. This number can be adjusted with the following code

 const api = new API(PLATFORM.Epic, 'lil McNugget', {
  expiresAfter: 5000 // Sets the expiry to 5 seconds (5000 ms)
 });

Sample Code


import { API, PLATFORM } from 'rocket-league-stats';

async function main() {
	const api = new API(PLATFORM.Epic, 'lil McNugget');
	const data1s = await api.get1v1();
	console.log(data1s);
	const data2s = await api.get2v2();
	console.log(data2s);
	const data3s = await api.get3v3();
	console.log(data3s);
	const dataHS = await api.getDropshot();
	console.log(dataHS);
	const dataH = await api.getHoops();
	console.log(dataH);
	const dataR = await api.getRumble();
	console.log(dataR);
	const dataS = await api.getSnowday();
	console.log(dataS);
	const dataT = await api.getTournament();
	console.log(dataT)
	const dataAll = await api.getData();
	console.log(dataAll);
	const dataRaw = await api.getRaw();
	console.log(dataRaw);

	const data1sFresh = await api.get1v1({
		fresh: true,
	});
	console.log(data1sFresh);
}

main().catch((err) => {
	console.log(err);
});

Disclaimer

This project is fully for educational purposes and if you want to use the rocketleague api in a production/commertial enviroment you should ask for one at Rocket League Support or email the guys at TRNetwork.

Keywords

FAQs

Package last updated on 10 Apr 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc