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

handy-remote-server

v1.3.3

Published

Remote Transcription Server for Handy

Readme

Handy Remote Server 🎙️

A lightweight standalone inference server for Handy, allowing you to transcribe audio from external devices, weak computers, and more.

Installation

The easiest way to run the external inference server is using npx:

npx handy-remote-server

(You must have Node.js and Rust/Cargo installed)

Usage

When you run the server for the first time, it will:

  1. Download the GigaAM v3 model (~100 MB) with a progress bar:
📥 Downloading model...
   URL:  https://blob.handy.computer/giga-am-v3.int8.onnx
   Dest: /path/to/models/gigaam.onnx

   ████████████████████░░░░░░░░░░░░░░░░░░░░  52.3%  52.10 MB / 99.60 MB  12.5 MB/s

✅ Download complete in 8.2s
  1. Generate a persistent API key saved to ~/.handy/api_key:
======================================================
Generated a new API KEY (saved to /Users/you/.handy/api_key)
Your API KEY is: xxxxx...xxxxx
======================================================

The key persists across restarts. On the next launch, it will be loaded automatically.

  1. Start the server and log every request in detail:
Handy Remote Server is running on port 3000

[2026-03-07T12:00:00.000Z] ── REQUEST #1 ──────────────────────
  Method:  POST /transcribe
  From:    192.168.1.5
  Auth:    OK
  [#1]  Audio received: 156.3 KB
  [#1]  Queued for inference (queue length: 0)
[2026-03-07T12:00:01.234Z] ── RESPONSE #1 ─────────────────────
  Status:   200
  Duration: 1.23s
  Result:   "Привет, как дела?"

Connecting from Handy

  1. Open Handy on your client machine.
  2. Go to Settings > Models, select Remote Server.
  3. Go to Settings > General, fill in:
    • Remote Server URL: http://<your-server-ip>:3000
    • API Token: the generated token
  4. All transcriptions will now be processed by the server!

Environment Variables

| Variable | Default | Description | | ---------------- | ------------------------------------------- | -------------------------------------- | | PORT | 3000 | Server port | | API_KEY | auto-generated, saved to ~/.handy/api_key | Bearer token for authentication | | INFER_CLI_PATH | auto-detected | Path to the rust-infer binary | | MODEL_TYPE | gigaam | Transcription model to use (see below) |

Supported Models

# Русский (по умолчанию)
MODEL_TYPE=gigaam npx handy-remote-server

# Мультиязычный (включая русский) — Whisper модели
MODEL_TYPE=whisper-tiny npx handy-remote-server      # 75 MB
MODEL_TYPE=whisper-base npx handy-remote-server      # 142 MB
MODEL_TYPE=whisper-small npx handy-remote-server     # 487 MB
MODEL_TYPE=whisper-medium npx handy-remote-server    # 1.5 GB
MODEL_TYPE=whisper-turbo npx handy-remote-server     # 1.6 GB
MODEL_TYPE=whisper-large npx handy-remote-server     # 1.1 GB

# Английский — Moonshine
MODEL_TYPE=moonshine-tiny npx handy-remote-server    # 60 MB
MODEL_TYPE=moonshine-base npx handy-remote-server    # 100 MB

# Английский — Breeze/Parakeet
MODEL_TYPE=parakeet npx handy-remote-server          # ~200 MB

# Мультиязычный — SenseVoice
MODEL_TYPE=sensevoice npx handy-remote-server        # ~200 MB

| Model | Language | Size | Speed | | ------------------ | -------------- | ------- | --------- | | gigaam (default) | Russian | ~100 MB | ⚡ Fast | | whisper-tiny | Multi-language | 75 MB | ⚡ Fast | | whisper-base | Multi-language | 142 MB | ⚡ Fast | | whisper-small | Multi-language | 487 MB | 🔄 Medium | | whisper-medium | Multi-language | 1.5 GB | 🐢 Slow | | whisper-turbo | Multi-language | 1.6 GB | ⚡ Fast | | whisper-large | Multi-language | 1.1 GB | 🐢 Slow | | moonshine-tiny | English | 60 MB | ⚡ Fast | | moonshine-base | English | 100 MB | ⚡ Fast | | parakeet | English | ~200 MB | 🔄 Medium | | sensevoice | Multi-language | ~200 MB | 🔄 Medium |

How It Works

The handy-remote-server spins up a tiny Express server alongside a heavily optimized Rust CLI (rust-infer) powered by transcribe-rs. Audio files are dispatched sequentially from the Node server directly into the Rust engine.

Currently the server uses the GigaAM v3 model (Russian-language, fast inference, ~100 MB).