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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@gmitch215/tabroom-api

v0.4.0

Published

Multiplatform API for Tabroom.com

Readme

TabroomAPI

Multiplatform API for Tabroom.com

Overview

Kotlin GitHub License

badge-jvm badge-c badge-android badge-js badge-mac badge-ios badge-watchos badge-tvos badge-linux-x64 badge-windows

Tabroom.com is a platform used by the Speech and Debate community to manage tournaments and post results. Since it does not have an official API, this repository scrapes the website to provide an API for developers to use.

What about api.tabroom.com?

  • api.tabroom.com is a private API used by the Tabroom website that requires authentication.
  • It's also missing a lot of the stuff you would need (like ballot information, judge paradigms, etc.)

It's a good resource for getting surface-level information about yourself when you log in, but it doesn't provide the same level of detail as this API.

Installation

Maven

<dependencies>
    <dependency>
        <groupId>dev.gmitch215</groupId>
        <artifactId>tabroom-api</artifactId>
        <version>[VERSION]</version>
    </dependency>
</dependencies>

Gradle (Groovy)

dependencies {
    implementation 'dev.gmitch215:tabroom-api:[VERSION]'
}

Gradle (Kotlin DSL)

dependencies {
    implementation("dev.gmitch215:tabroom-api:[VERSION]")
}

NPM

npm install @gmitch215/tabroom-api

C/C++

#include <libtabroom_api_api.h>
gcc -o my_program my_program.c -ltabroom_api

Usage

import dev.gmitch215.tabroom.api.getTournament
import dev.gmitch215.tabroom.api.Entry
import dev.gmitch215.tabroom.api.Event
import dev.gmitch215.tabroom.api.Tournament

fun main() {
    val tourney = getTournament(30082) // IDC Varsity State Championships 2024
    
    val description = tourney.description
    
    for (event in tourney.events) {
        println("${event.name} Entries:") // Public Forum, Lincoln Douglas, Policy, Extemporanous Speaking, etc.
        
        for (entry in event.entries) {
            val school = entry.school // School name
            val fullName = entry.name // Full name of the student
            
            println("$fullName from $school is competing!")
        }
    }
}

Java


import dev.gmitch215.tabroom.api.Entry;
import dev.gmitch215.tabroom.api.Event;
import dev.gmitch215.tabroom.api.TabroomAPI;
import dev.gmitch215.tabroom.api.Tournament;

public class Main {
    public static void main(String[] args) {
        // IDC Varsity State Championships 2024
        Tournament tourney = TabroomAPI.getTournament(30082);
        
        String description = tourney.getDescription();
        
        for (Event event: tourney.getEvents()) {
            System.out.println(event.getName() + " Entries:"); // Public Forum, Lincoln Douglas, Policy, Extemporanous Speaking, etc.
            
            for (Entry entry : event.getEntries()) {
                String school = entry.getSchool(); // School name
                String fullName = entry.getName(); // Full name of the student
                
                System.out.println(fullName + " from " + school + " is competing!");
            }
        }
    }
}

JavaScript

Browser

<script src="https://cdn.gmitch215.dev/lib/TabroomAPI/tabroom-api-<version>.js"></script>
tabroom.dev.gmitch215.tabroom.api.getTournament(30082)
    .then(tournament => {
        alert(tournament.description);
        tournament.events.forEach(event => {
            alert(event.name + " Entries:");
            event.entries.forEach(entry => {
                alert(entry.name + " from " + entry.school + " is competing!");
            });
        });
    })
    .catch(err => {
        alert(err);
    });

NodeJS

import * as tabroom from '@gmitch215/tabroom-api';

tabroom.dev.gmitch215.tabroom.api.getTournament(30082)
    .then(tournament => {
        console.log(tournament.description);
        tournament.events.forEach(event => {
            console.log(event.name + " Entries:");
            event.entries.forEach(entry => {
                console.log(entry.name + " from " + entry.school + " is competing!");
            });
        });
    })
    .catch(err => {
        console.error(err);
    });

Contributing

Contributions are welcome! Feel free to open an issue or submit a pull request.