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

remote-vibe-coder

v0.6.2

Published

Run Claude Code remotely from your phone — browse a folder, open a PTY-backed Claude session, and answer prompts from any device on your LAN.

Readme

Remote Vibe Coder

CI

Orchestrate Claude Code from anywhere.

What is RVC?

A tiny local web server that wraps the claude CLI in a PTY and renders it in your browser. Vibe code, review diffs, commit, and ship remotely.

Quick start

Requires Node 25+ and the claude CLI on your PATH.

npx rvc --root ~/Websites

rvc is shorthand for remote-vibe-coder — both commands work.

Open the printed URL. Binds to 127.0.0.1 by default.

Connect from your phone

On your LAN:

npx rvc --root ~/Websites --host 0.0.0.0

Over the internet, via an anonymous HTTPS tunnel (powered by ducky.wtf):

npx rvc --root ~/Websites --https
# --ducky is an alias for --https

A QR code is printed on startup. Scan it — the URL carries a one-shot token stored in sessionStorage after first load.

No signup, no auth token: ducky issues a fresh anonymous subdomain each run. @ducky.wtf/cli ships as a regular dependency, so there's nothing extra to install.

Features

  • PTY-backed terminal: the real claude CLI — slash commands, autocomplete, permission prompts, cancellation.
  • Multi-viewer sessions: PTY is independent of the browser. Multiple devices attach to the same sessionId; new attachers get a 64 KB ring-buffer replay.
  • Conversation history + continue: pick up the last conversation in a folder, or resume any past session from ~/.claude/projects/.
  • Files panel: file tree + Monaco editor + git diff vs HEAD.
  • Git commits from the browser: stage/unstage and commit without leaving the page.
  • Voice input: mic button on the keybar, native Web Speech API.
  • Built-in HTTPS tunnel: --https (alias --ducky) gives you a public HTTPS URL with a one-shot token — no signup, no reverse proxy, no port forwarding. Anonymous tunnels via ducky.wtf.
  • Folder favorites + filter: star folders and filter the browser list.
  • URL-driven state: every view is in the URL — reload restores it exactly.
  • Mobile-first keybar: 1/2/3 (yes/no/other), arrows, Esc, Tab, Ctrl+C, soft-keyboard summon.

CLI

rvc [options]   # alias of remote-vibe-coder

  -p, --port <n>             Port to listen on (default: 4310)
  -H, --host <addr>          Bind address (default: 127.0.0.1; 0.0.0.0 for LAN)
  -r, --root <path>          Folder you can browse (default: ~/Websites)
  -t, --token <str>          Require ?token=… (auto-generated with --https/--ducky or non-loopback host)
      --no-token             Skip token (insecure)
  -c, --command <bin>        Command to run in each session (default: claude)
      --idle-timeout <m>     Kill sessions idle for more than <m> minutes
      --https, --ducky       Expose via a public HTTPS tunnel (ducky.wtf, anonymous)
  -h, --help                 Show this help

Trust model

The token is shown only on the local TTY where the server starts. Anyone with it can run claude as you — treat it like an SSH key. For WAN access, use --https (anonymous ducky.wtf tunnel), Tailscale, or an SSH tunnel.

Development

git clone [email protected]:mjweaver01/remote-vibe-coder.git
cd remote-vibe-coder
npm install
npm run dev         # vite watch + tsx watch
npm test            # vitest
npm run typecheck   # tsc --noEmit
npm run build       # produces dist/ (server + web + monaco)

License

MIT