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

ittf-pingpong

v2.0.1

Published

Unofficial API to retrieve player rankings and statistics from ITTF (International Table Tennis Federation) affiliated members and events.

Readme

ITTF API

Version Downloads Build Tests Coverage

Unofficial API written in TypeScript to retrieve player rankings and statistics from ITTF (International Table Tennis Federation) affiliated members and events. Provides methods to fetch player rankings with input validation and error handling.


Features

  • Fetch current rankings broken down by gender (Man, Woman, Mixed for doubles), by type (Youth, aggregate of U15, U18, and U21 & Senior), and by category (Singles, Doubles Pair rankings, Doubles Individual rankings)
  • Look up a player's ITTF ID by searching with their Given Name, Family Name, or Full Name
  • Look up a player's Profile by searching with their Full Name or their ITTF ID
  • Throw descriptive errors for invalid inputs
  • Facilitates the ingestion of ITTF data, making it easy to download full datasets to .csv files

Installation

npm install ittf-pingpong
# or using yarn
yarn add ittf-pingpong
# or using pnpm
pnpm add ittf-pingpong

Usage

  • TypeScript:
import { ittfPingPong } from 'ittf-pingpong';

const client = new ittfPingPong();

async function fetchRankings() {
  try {
    const rankings : Rankings = await client.currentRankings('SEN', 'M', 'S', 10); //Returns top 10 Singles Senior Men
    const findId : PlayerId[] = await client.playerIttfId({playerFullName:"FAN Zhendong"}) //Returns single object Array of PlayerId
    const IdNum : number = Number(findId[0].IttfId)
    const profile : Stats = await client.playerProfile({playerIttfId:IdNum}) //Returns Win/Loss per year, top rank, etc.
    return [rankings, findId, profile];
  } catch (error : unknown) {
    console.error('Error fetching rankings:', error);
  }
}

fetchRankings();
  • EcmaScriptModule :
import { ittfPingPong } from 'ittf-pingpong';

const client = new ittfPingPong();

async function fetchRankings() {
  try {
    const rankings = await client.currentRankings('SEN', 'M', 'S', 210); //Returns top 10 Singles Senior Men
    const findId = await client.playerIttfId({playerFullName:"FAN Zhendong"}) //Returns 121404
    const IdNum = Number(findId[0].IttfId)
    const profile = await client.playerProfile({playerIttfId:IdNum}, {includeExtendedDetails: true}) //Returns Win/Loss per year, top rank, etc.
    return [rankings, findId, profile];
  } catch (error) {
    console.error('Error fetching rankings:', message);
  }
}

fetchRankings();
  • CommonJS :
async function fetchRankings() {
  try {
    const {ittfPingPong} = require("ittf-pingpong")
    const client = new ittfPingPong();
    const rankings = await client.currentRankings('SEN', 'M', 'S', 210); //Returns top 10 Singles Senior Men
    const findId = await client.playerIttfId({playerFullName:"FAN Zhendong"}) //Returns 121404
    const IdNum = Number(findId[0].IttfId)
    const profile = await client.playerProfile({playerIttfId:IdNum}, {includeExtendedDetails: true}) //Returns Win/Loss per year, top rank, etc.
    return [rankings, findId, profile];
  } catch (error) {
    console.error('Error fetching rankings:', error);
  }
}

fetchRankings();

API Methods

currentRankings

Fetches current player rankings based on specified filters.

  • Parameters:
async currentRankings(
  type : 'YOU' | 'SEN',             // Competition type: Youth ('YOU') or Senior ('SEN')
  gender : 'M' | 'W' | 'X',         // Gender: Male ('M'), Female ('W'), Mixed ('X')
  category : 'S' | 'D' | 'DI',      // Category: Singles ('S'), Doubles ('D'), Doubles Individual ('DI')
  topN : number | 'all' = 100,            // Number of top players to fetch, or 'all'
  requestDelay : number = 2000
): Promise<Rankings>
  • Returns:

    • Promise resolving to a Rankings array, containing objects of type RankEntry.
  • Errors:

    • Throws an error if inputs are invalid, e.g., 'Invalid gender: V. Valid options are: M, W, X'
    • Throws an error if X gender is used with invalid category (e.g., 'S')

playerIttfId

Fetches player's ITTF ID by searching their Full Name, Given Name, or Family Name. (Returns array of players if they share a common Given Name or Family Name).

  • Parameters:
async playerIttfId(
  searchName : FullName | GivenName | FamilyName //Family Name in all caps, followed by Given Name with first leter capitalized | playerGivenName | playerFamilyName
): Promise<Array<PlayerId>>
  • Returns:

    • Promise resolving to an array of objects of type PlayerID.
  • Errors:

    • Throws an error if inputs are invalid.
    • Throws an error if multiple search parameters are inputted.

playerProfile

Fetches player's Profile by searching their Full Name or ITTF ID.

  • Parameters:
async playerProfile(
  searchMethod : PlayerFullName | IttfId, //Family Name in all caps, followed by Given Name with first letter capitalized | playerIttfId
  options : ProfileOptions = {includeExtendedDetails : false}
): Promise<Stats>
  • Returns:

    • Promise resolving to a Stats object.
  • Errors:

    • Throws an error if inputs are invalid.
    • Throws an error if multiple search parameters are inputted.