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

@squawk/navaid-data

v0.3.2

Published

Pre-processed FAA NASR navaid snapshot for use with @squawk/navaids

Readme

MIT License npm TypeScript

Pre-processed snapshot of US navaid data from the 2026-04-16 FAA NASR cycle. Data only - no query logic, no dependency on @squawk/navaids.

Documentation

Part of the @squawk aviation library suite. See all packages on npm.

Coverage

  • All non-shutdown US navigational aids: VOR, VORTAC, VOR/DME, TACAN, DME, NDB, NDB/DME, fan markers, marine NDBs, and VOTs
  • Frequencies (MHz for VOR-family, kHz for NDB-family) and TACAN channels
  • Elevation, magnetic variation, and service volume classification
  • ARTCC assignment (low and high altitude)
  • Power output, NDB class, operating hours, and simultaneous voice capability
  • DME/TACAN component position when different from the main navaid

Installation

npm install @squawk/navaid-data

Usage

import { usBundledNavaids } from '@squawk/navaid-data';

// Inspect metadata
console.log(usBundledNavaids.properties.nasrCycleDate); // "2026-01-22"
console.log(usBundledNavaids.properties.recordCount);

// Use with @squawk/navaids for zero-config navaid queries
import { createNavaidResolver } from '@squawk/navaids';

const resolver = createNavaidResolver({ data: usBundledNavaids.records });

Consumers who have their own data pipeline can use @squawk/navaids alone and pass any compatible Navaid array at initialization.

Data format

Each record is a full Navaid object from @squawk/types. Key fields:

| Property | Type | Description | | ---------------------------- | -------------------- | ----------------------------------------------------------- | | identifier | string | Navaid identifier (e.g. "BOS", "JFK") | | name | string | Official facility name (e.g. "BOSTON") | | type | NavaidType | VOR, VORTAC, VOR/DME, TACAN, DME, NDB, NDB/DME, etc. | | status | NavaidStatus | OPERATIONAL_IFR, OPERATIONAL_RESTRICTED, or OPERATIONAL_VFR | | lat, lon | number | Decimal degrees | | state, country | string | Two-letter codes | | city | string or undefined | Associated city | | elevationFt | number or undefined | Elevation in feet MSL | | frequencyMhz | number or undefined | VOR-family frequency in MHz (108.0-117.95) | | frequencyKhz | number or undefined | NDB-family frequency in kHz | | tacanChannel | string or undefined | TACAN/DME channel (e.g. "84X") | | magneticVariationDeg | number or undefined | Magnetic variation in degrees | | magneticVariationDirection | string or undefined | "E" or "W" | | lowArtccId | string or undefined | Low-altitude ARTCC (e.g. "ZBW") | | highArtccId | string or undefined | High-altitude ARTCC | | navaidClass | string or undefined | Service volume class (e.g. "VH", "VL", "H", "L", "T") | | dmeServiceVolume | string or undefined | DME service volume class | | powerOutputWatts | number or undefined | Transmitter power in watts | | simultaneousVoice | boolean or undefined | Whether voice is carried on the frequency | | ndbClass | string or undefined | NDB classification (e.g. "HH", "MHW", "LOM") |

Data source

All data is derived from the FAA National Airspace System Resource (NASR) 28-day subscription, which is public domain. Navaid data comes from NAV_BASE.csv. The build pipeline that produces this dataset lives in tools/build-navaid-data.