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

@bradrichardson/overturemaps

v0.3.3

Published

Unofficial JavaScript/TypeScript client for Overture Maps Foundation data - inspired by overturemaps-py

Downloads

988

Readme

@bradrichardson/overturemaps

An unofficial JavaScript/TypeScript client library for accessing Overture Maps Foundation data.

⚠️ Disclaimer: This is an unofficial client library and is not affiliated with, endorsed by, or supported by the Overture Maps Foundation. For official tools, please visit overturemaps-py.

Installation

npm install @bradrichardson/overturemaps

Features

  • STAC Integration: Dynamically discover available releases (no hardcoded versions)
  • GERS Lookup: Fetch features by Global Entity Reference System ID using hyparquet
  • TypeScript First: Full type definitions and excellent IDE support

Usage

Get Latest Release

import { getLatestRelease, getAvailableReleases } from '@bradrichardson/overturemaps';

// Get the latest release version
const latest = await getLatestRelease();
console.log(latest); // e.g., "2025-12-18.0"

// Get all available releases
const [releases, latestVersion] = await getAvailableReleases();
console.log(releases); // ["2025-12-18.0", "2025-11-13.0", ...]

Fetch Feature by GERS ID

import { getFeatureByGersId } from '@bradrichardson/overturemaps';

// Look up a feature by its GERS ID
const feature = await getFeatureByGersId('08f1a4a7-5a6b-4c3d-9e2f-1a2b3c4d5e6f');

if (feature) {
  console.log(feature.geometry);
  console.log(feature.properties);
}

Query GERS Registry

import { queryGersRegistry } from '@bradrichardson/overturemaps';

// Get metadata about a GERS ID without fetching the full feature
const result = await queryGersRegistry('08f1a4a7-5a6b-4c3d-9e2f-1a2b3c4d5e6f');

if (result) {
  console.log(result.filepath);  // S3 path to the feature
  console.log(result.bbox);      // Bounding box
  console.log(result.version);   // GERS version
}

About Overture Maps

Overture Maps Foundation is a collaborative effort to develop interoperable and open map data. The foundation provides free, high-quality geospatial data including:

  • 🏢 Buildings - Building footprints
  • 📍 Places - Points of interest (POIs)
  • 🛣️ Transportation - Roads and transportation networks
  • 🏛️ Divisions - Administrative boundaries
  • 📮 Addresses - Address data
  • 🌍 Base - Land, water, and infrastructure features

License

MIT License - See LICENSE file for details.

Related Projects