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

openfrontio-api-client

v1.1.2

Published

A Javascript/Typescript client for the OpenfrontIO API

Downloads

9

Readme

OpenFront JS API Client

An unofficial, robust JavaScript/TypeScript client for the OpenFront API.

npm version License

Installation

npm install openfrontio-api-client

View the Docs

Quick Usage

import { getGames, getGameInfo } from "openfrontio-api-client";

const now = new Date();
const yesterday = new Date(now - 86400000).toISOString();

const games = await getGames({
  start: yesterday,
  end: now.toISOString(),
});

Supported Methods

Key Features

  • Pagination Normalization: Automatically parses and normalizes pagination headers, making it easier to traverse large datasets.
  • TypeScript Support: Includes comprehensive type definitions that wrap the official game types, ensuring type safety and autocompletion.
  • BigInt Support: Optional support for BigInt to safely handle large numeric identifiers without precision loss.

TypeScript Integration

The library exposes TypeScript typings for all API responses. These types directly wrap the official game types, adjusting for optional properties where necessary to match the actual API behavior.

BigInt Support

OpenFront API responses often contain large integer identifiers. By default, these are serialized as strings in JSON to prevent JavaScript number precision loss (IEEE 754).

This library offers optional BigInt support, allowing you to work with these identifiers as native BigInt primitives for mathematical operations or comparisons, rather than managing them as strings.

Contributing

Contributions are welcome! Please ensure you have Node.js and npm installed before starting.

Development Setup

Clone the repository and install the dependencies:

git clone github.com/Tidwell/openfrontio-api-client
cd openfrontio-api-client
npm install

Development Scripts

The following scripts are available in package.json to assist with development, building, and testing.

Building the Library

To build the package for production (transpiling TypeScript and bundling):

npm run build

This uses pkgroll to output the build artifacts to the dist/ directory.

Testing

This project uses Vitest for testing.

Unit Tests

To run the standard unit test suite:

npm test

End-to-End (E2E) Tests

To run the end-to-end tests using the specific E2E configuration:

npm run test:e2e

Updating E2E Snapshots/Responses

If the API behavior changes or you need to record new responses for the E2E tests, use the write command:

npm run test:e2e:write

This sets the WRITE_API_RESPONSES environment variable to true during the test run.

Formatting

To format the codebase using Prettier:

npm run format

Documentation

To generate the API documentation using TypeDoc:

npm run docs

License

Distributed under the MIT License. See LICENSE for more information.