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 🙏

© 2024 – Pkg Stats / Ryan Hefner

quake-champions-api

v1.0.8

Published

Unofficial Quake Champions API JavaScript client

Downloads

108

Readme

quake-champions-api

[!CAUTION] This package is not maintained nor updated Official Quake Stats are currently slightly broken (no matches)

Greenkeeper badge

This is an unofficial JS client for the Quake Champions API, provided from stats.quake.com website.

This project shouldn't be used in production as no official developer access has been provided to the Quake Champions API, thus it mainly map the calls seen from the stats.quake.com page, and the current API calls might not work in the future.

Installation

npm i

Usage

Quick example

const QuakeChampionsClient = require('quake-champions-api');

const client = new QuakeChampionsClient();

async function getData() {
    // Fetch player
    const player = await client.player.get('lovethebomb');

    console.debug('Player data', player)
    console.debug('Duel SR', player.playerRatings.duel.rating)
}

Documentation

Player

get(playername)

Retrieve a player data for a given playername.

Returns JSON from the API.

const client = new QuakeChampionsClient();

async function getPlayer() {
    const player = await client.player.get('my-playername');
}

Match

get(matchId, playername)

Retrieve a match data for a given matchId.

Allows an optional playername argument, which adds more information to the response.

Returns JSON from the API.

const client = new QuakeChampionsClient();

async function getMatch() {
    const match = await client.match.get('match-id-1234abc');
}

async function getMatchWithPlayerSummary() {
    const match = await client.match.get('match-id-1234abc', 'my-playername');
}

GamesSummary

get(playername)

Retrieve a GamesSummary data for a given playername.

Returns JSON from the API.

const client = new QuakeChampionsClient();

async function getGamesSummary() {
    const gamesSummary = await client.gamesSummary.get('my-playername');
}

Leaderboard

get(board, season, from)

Retrieve a Leaderboard data for a given board type.

Board can be duel or tdm.

Allows an optional season argument, which defaults to current.

Allows an optional from argument, for pagination, which defaults to 0.

Returns JSON from the API.

const client = new QuakeChampionsClient();

async function getDuelLeaderboard() {
    const leaderboard = await client.leaderboard.get('duel');
}

Rankings

ranking(rating)

Returns a ranking for a given rating, as a string like GOLD_1.

const client = new QuakeChampionsClient();

async function getPlayer() {
    const player = await client.player.get('my-playername');
    const ranking = client.rankings.ranking(player.playerRatings.duel.rating);
}

Testing

npm run test

License

MIT

TODO Trademarks QUAKE™, id Software™, Bethesda™, Bethesda Softworks™, ZeniMax™