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-clauding

v1.0.0

Published

Share Claude Code sessions to your phone

Readme

Remote Clauding

Monitor and interact with Claude Code from your iPhone while Claude works on your PC.

Architecture

┌──────────────┐      WSS       ┌───────────────┐      WSS      ┌──────────┐
│  Your PC     │ ─────────────► │ Cloud Relay   │ ◄──────────── │ iPhone   │
│  Agent +     │                │ Server        │               │ PWA      │
│  VSCode Ext  │                │               │               │          │
└──────────────┘                └───────────────┘               └──────────┘

Four components:

  • server/ - Cloud relay server (Node.js + WebSocket + Web Push)
  • agent/ - Desktop agent that wraps Claude CLI
  • vscode-ext/ - VSCode extension with "Share to Mobile" button
  • web/ - Mobile PWA (React)

Quick Start (Local Dev)

1. Install dependencies

cd server && npm install
cd ../agent && npm install
cd ../web && npm install

2. Generate VAPID keys (for push notifications)

npx web-push generate-vapid-keys

Copy the keys into a .env file (see .env.example).

3. Start the relay server

cd server
# Set environment variables or create .env
npm run dev

4. Build & serve the PWA

cd web
npm run build
# The server serves the PWA from web/dist/

For development with hot reload:

cd web
npm run dev
# Open http://localhost:5173

5. Start the desktop agent

cd agent
# Set RELAY_URL=ws://localhost:3001 and AUTH_TOKEN
npm start

6. Load the VSCode extension

  1. Open VSCode
  2. Go to Extensions sidebar
  3. Click "..." menu → "Install from VSIX..." or use dev mode:
    • Open vscode-ext/ folder in VSCode
    • Press F5 to launch Extension Development Host

7. Use on iPhone

  1. Open the relay server URL in Safari
  2. Tap "Share" → "Add to Home Screen"
  3. Open the app → Grant notification permission
  4. In VSCode, click "Share to Mobile" in the status bar

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | AUTH_TOKEN | Shared secret token | dev-token-change-me | | VAPID_PUBLIC_KEY | Web Push public key | (required for push) | | VAPID_PRIVATE_KEY | Web Push private key | (required for push) | | RELAY_URL | Relay server WebSocket URL | ws://localhost:3001 | | PORT | Relay server port | 3001 | | HTTP_PORT | Agent local API port | 9680 |

Deployment

Relay Server (Render.com)

  1. Create a new Web Service on Render
  2. Root directory: server
  3. Build command: cd ../web && npm install && npm run build
  4. Start command: npm start
  5. Set environment variables: AUTH_TOKEN, VAPID_PUBLIC_KEY, VAPID_PRIVATE_KEY

The server also serves the PWA static files, so both are deployed together.