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

readback

v0.0.0-alpha.10

Published

Transcribes ATC transmissions into readable text.

Downloads

82

Readme

       ◣               █▀▄ █▀▀ █▀█ █▀▄ █▀▄ █▀█ █▀▀ █ █
       █◣         ║┇   █ █ █   █ █ █ █ █ █ █ █ █   █ █
  ◣    ██◣❚       ║┇   █ █ █   █ █ █ █ █ █ █ █ █   █ █
━╸█►◄█████████ ◗╺━║┇━━ █▀▄ █▀▀ █▀█ █ █ █▀▄ █▀█ █   █▀▄
  ◤    ██◤❚       ║┇   █ █ █   █ █ █ █ █ █ █ █ █   █ █
       █◤         ║┇   █ █ █   █ █ █ █ █ █ █ █ █   █ █
       ◤               ▀ ▀ ▀▀▀ ▀ ▀ ▀▀  ▀▀  ▀ ▀ ▀▀▀ ▀ ▀
                       • • • • • • • • • • • • • • • •

readback is a real-time ATC (Air Traffic Control) transcription tool that captures system audio, transcribes it using local ATC-fine-tuned Whisper models, and formats the output with aviation-specific syntax highlighting. Useful for flight simmers on VATSIM and IVAO networks who (like me) struggle with following ATC communications.

Disclaimer: Transcription is far from perfect. The AI will make mistakes with fast speech, accents, background noise, and similar-sounding words. Always verify critical information (altitudes, headings, frequencies) and ask ATC to repeat if unsure. Never use for real-world aviation.

Demo

https://github.com/user-attachments/assets/ed01c017-d08e-44b2-9b5f-d2fce4dc9e95

System requirements

  • macOS: Works on Apple Silicon (M1/M2/M3). Intel Macs may work if they have a dedicated AMD GPU, but no guarantees.
  • Windows / Linux: A dedicated GPU (NVIDIA CUDA or Vulkan-compatible) is strongly recommended. AMD graphics card may work too, or not.

While I’ve done my best to ensure readback works across macOS, Linux, and Windows, I don’t have a lab full of different devices to test every possible hardware combination. If you run into audio capture issues or find ways to improve performance on specific platforms, please feel free to open an issue or submit a pull request. I’d love to improve cross-platform support with the help of the community.

Installation

Step 1: Platform prerequisites

These are required to run readback and/or to build native addons when no prebuilt binary is available.

macOS: xcode-select --install

Windows: Install Visual Studio Build Tools with the C++ workload (MSVC).

Linux (system-output capture): install one of:

  • PipeWire: sudo apt install pipewire-bin (provides pw-cat)
  • PulseAudio: sudo apt install pulseaudio-utils (provides parec)

Linux (only if native addons must compile): sudo apt-get update && sudo apt-get install -y cmake build-essential python3

Step 2: Install Node.js

You need Node.js version 22 or higher. Install the version labeled LTS from: https://nodejs.org/en/download/ (or use a Node version manager)

Verify: node --version (should be v22.x.x or newer)

Step 3: Install readback globally

npm install -g readback

If the instal fails with native build / node-gyp errors, install the build tools above and retry.


Usage

In your terminal, run:

readback

First time run

The first time you run readback, it will check if necessary models exist on your machine and guide you through the download process. Models are stored in ~/.readback/models.

After all models are installed, readback will attempt to capture your system audio. This may trigger an operating system security prompt asking for microphone or audio recording permissions.

Please grant this permission. Although readback listens to output (what you hear), operating systems often classify this as "Microphone" or "Screen Recording" access. Once granted, you may need to restart your terminal or the application.

Options

To list all available options run:

readback --help

Exiting

Press Ctrl + C


Updating

Open Terminal and run:

npm update -g readback

Uninstalling

Uninstall npm package

Open Terminal and run:

readback --purge && npm uninstall -g readback

This will first delete the .readback folder in your home directory and then uninstall the globally installed npm module.


License

MIT License - See repository for details


Credits

This project would not be possible without the ATC-fine-tuned Whisper models provided by Jack Tol.


Issues and contributions

Found a bug or want to add features? Submit issues or pull requests on the GitHub repository.

Reporting issues

When filing a bug, please attach your session log from:

~/.readback/logs/

Happy flying!