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

vibetalk

v0.1.0

Published

Voice-to-text dictation CLI — speak and it types wherever your cursor is. Works with any app.

Downloads

109

Readme

VibeTalk

Voice-to-text dictation CLI — speak and it types wherever your cursor is.

Works with any app: VS Code, Cursor, terminal, browser, Slack, or any text field.

Powered by Soniox real-time speech-to-text.

Quick Start

npx vibetalk

On first run, it will ask for your Soniox API key. Get one free at console.soniox.com/api-keys.

That's it. Press Enter to start recording, speak, and press Enter again to stop. Your speech is typed wherever your cursor is focused.

How It Works

  1. Run npx vibetalk in a terminal
  2. Press Enter to start recording
  3. Speak — your words are typed in real-time wherever your cursor is
  4. Press Enter to stop recording
  5. Repeat as needed. Press Ctrl+C to quit.

Installation

# Use directly with npx (no install needed)
npx vibetalk

# Or install globally
npm install -g vibetalk
vibetalk

Configuration

Your API key is saved automatically on first run. To manage configuration:

# Set API key manually
vibetalk config set api-key YOUR_SONIOX_KEY

# View all settings
vibetalk config list

# Change language (default: en)
vibetalk config set language es

# Reset to defaults
vibetalk config reset

You can also pass the API key as an environment variable:

export SONIOX_API_KEY=your_key_here
npx vibetalk

Options

vibetalk [start]                Start dictation (default command)
  --api-key <key>              Soniox API key
  --device <index>             Audio input device index
  --language <lang>            Language (en, es, fr, de, etc.)
  --typing-strategy <s>        auto | robotjs | clipboard
  --typing-delay <ms>          Ms between keystrokes (default: 12)
  --use-hotkey                 Use global hotkey instead of Enter
  --verbose                    Debug logging

vibetalk config set <k> <v>    Set config value
vibetalk config get <key>      Get config value
vibetalk config list           Show all settings
vibetalk config reset          Reset to defaults
vibetalk devices               List audio input devices

Requirements

  • Node.js 18+
  • macOS, Windows, or Linux
  • A microphone
  • Soniox API key (free tier available at soniox.com)

Permissions

On macOS, you may need to grant:

  • Microphone access to your terminal app
  • Accessibility access for keyboard simulation (System Settings > Privacy & Security)

How It Works (Technical)

  1. Captures microphone audio via PvRecorder (16kHz, 16-bit PCM)
  2. Streams audio over WebSocket to Soniox real-time transcription API
  3. Receives transcribed tokens in real-time
  4. Types confirmed text character-by-character using robotjs
  5. Falls back to clipboard paste if robotjs is unavailable

License

MIT