Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
rocket-league-stats
Advanced tools
To install use:
npm i rocket-league-stats
pnpm add rocket-league-stats
bun a rocket-league-stats
const api = new API(PLATFORM.Epic, 'lil McNugget');
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)
});
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);
});
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.
FAQs
Wrapper for rocket league stats.
The npm package rocket-league-stats receives a total of 4 weekly downloads. As such, rocket-league-stats popularity was classified as not popular.
We found that rocket-league-stats demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.