smashgg.js - (Unofficial) NodeJS SDK

const smashgg = require('smashgg.js');
const { Event } = smashgg;
var doublesAtBMR2 = await Event.get('bad-moon-rising-2', 'melee-doubles');
var sets = await doublesAtBMR2.getSets();
console.log('Bad Moon Rising 2 Doubles:');
console.log('Set count: ' + sets.length);
console.log(
'Set results: ' + sets.map(set => set.getDisplayScore()).join('\n'),
);
smashgg.js is an unofficial NodeJS SDK for the start.gg public API. It allows for ease of access to common API objects and aggregations so that developers can "spend less time digging through JSON or writing GQL queries, and more time getting their application up and running."

Boost Legacy RL Seeder

cmd output

For a tournament organizer, carefully seeding an event is a critical task for maintaining competitive integrity and for ensuring that players have a great experience. It can be time-consuming and tedious, and the work involved scales up as events grow.

Boost Legacy, a tournament organizer specializing in Rocket League events, uses asoftware solution(powered by the start.gg public API) to quickly and thoroughly seed their events from top to bottom.