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

@vibelet/cli

v1.0.25

Published

macOS CLI for installing and running the Vibelet daemon

Readme

Vibelet

@vibelet/cli is a cross-platform CLI that installs and manages the Vibelet daemon for remote coding sessions. The same package is also published as vibelet.

Official website: https://vibelet.icu

Requirements

  • macOS / Linux / Windows
  • Node.js 18 or newer

Install

npx @vibelet/cli
npx vibelet

Or install it globally:

npm install -g @vibelet/cli
npm install -g vibelet
vibelet

The CLI prints the official website on each run so users can always jump back to the main docs and download page.

Commands

vibelet              # Install/start daemon, auto-enable remote access, and print pairing QR code
vibelet start        # Same as above
vibelet stop         # Stop the daemon
vibelet restart      # Restart the daemon
vibelet status       # Show service and daemon status
vibelet logs         # Print recent daemon logs
vibelet reset        # Reset pairings and print a fresh QR code
vibelet --help       # Show help
vibelet --version    # Show CLI version

Options

vibelet --local                      # Skip the default Cloudflare Tunnel for this run
vibelet --remote --force             # Force a fresh tunnel URL
vibelet --relay <url>                  # Use a tunnel URL for remote access
vibelet --relay ""                     # Clear saved relay URL
vibelet --host <ip>                    # Set primary host/IP advertised for connections
vibelet --fallback-hosts <ip1>,<ip2>   # Comma-separated fallback IPs

Remote access is enabled by default for vibelet, vibelet start, vibelet restart, and vibelet reset. Use --local when you want a LAN-only QR code for that run.

Release

pnpm publish:dual:dry-run
pnpm publish:dual

The dual publish script builds once, then publishes the same CLI bundle to both @vibelet/cli and vibelet. The dry-run path stages both packages and validates them with npm pack --dry-run without touching the registry.

Notes

  • The npm package publishes the CLI plus a minified daemon runtime bundle.
  • The package is intended for end users of the macOS host daemon, not for importing as a library.
  • The daemon keeps ~/.vibelet/data/audit.jsonl and ~/.vibelet/logs/daemon.*.log size-bounded by trimming the oldest content in place.
  • Environment variables: | Variable | Default | Description | |----------|---------|-------------| | VIBE_PORT | 9876 | Daemon listen port | | VIBE_IDLE_TIMEOUT_MS | 1800000 (30 min) | Idle timeout before a driver is released (0 = disabled) | | VIBE_TURN_STALL_TIMEOUT_MS | 300000 (5 min) | Soft inactivity threshold for suspecting an in-flight turn has stalled (0 = disabled) | | VIBE_TURN_STALL_HARD_TIMEOUT_MS | 900000 (15 min) | Hard inactivity threshold for force-stopping a stalled turn after warning (0 = warn only) | | VIBE_AUDIT_MAX_BYTES | 8388608 (8 MB) | Max audit.jsonl size before trimming | | VIBE_DAEMON_LOG_MAX_BYTES | 16777216 (16 MB) | Max daemon log file size before trimming | | VIBE_STORAGE_HOUSEKEEPING_INTERVAL_MS | 300000 (5 min) | Log trimming check interval | | CLAUDE_PATH | auto-detect | Path to Claude binary | | CODEX_PATH | auto-detect | Path to Codex binary |