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

@dhyey2075/claudecast

v0.1.2

Published

Continue your Claude Code session from any device. Wraps Claude Code + tmux + ttyd + Cloudflare Tunnel into a single command.

Readme

ClaudeCast

Continue your Claude Code session from any device. Wraps Claude Code + tmux + ttyd + Cloudflare Tunnel into a single command.

claudecast

Opens Claude Code locally and exposes it via a public URL — accessible from your phone, tablet, or another computer.

Install

npm install -g @dhyey2075/claudecast

Prerequisites

  • Claude Codenpm install -g @anthropic-ai/claude-code
  • tmuxbrew install tmux
  • ttydbrew install ttyd
  • cloudflaredbrew install cloudflare/cloudflare/cloudflared

Usage

# Start Claude with web access + public tunnel
claudecast

# Named session
claudecast --session SURFF-1017

# Resume an existing session
claudecast --resume

# Continue last conversation
claudecast -c

# Local only, no tunnel
claudecast --no-tunnel

# No web at all, just tmux
claudecast --no-web

# Custom port
claudecast --port 8080

# Pass any Claude CLI flags
claudecast --model sonnet
claudecast --dangerously-skip-permissions

Commands

# Check what's running
claudecast status

# Stop web services (keeps Claude session alive)
claudecast stop

# Stop everything
claudecast stop --all

How It Works

claudecast
    │
    ├── tmux session (claude)        ← Claude Code runs here
    ├── tmux session (ttyd)          ← Web terminal server
    └── tmux session (tunnel)        ← Cloudflare Tunnel
  • Claude runs inside a tmux session
  • ttyd exposes that session as a web terminal
  • Cloudflare Tunnel gives it a public HTTPS URL
  • Your local terminal and the web view are mirrored
  • When you exit Claude, everything cleans up automatically

Options

| Flag | Description | |------|-------------| | --session <name> | Name the tmux session (default: claude) | | --port <port> | ttyd port (default: 7681) | | --no-web | Skip ttyd and tunnel, local tmux only | | --no-tunnel | Start ttyd but skip Cloudflare tunnel | | --local-only | Bind ttyd to localhost only | | --help | Show help |

All other flags are forwarded directly to Claude CLI.

Security

The public URL gives full terminal access to anyone who has it. A warning is displayed on startup. For production use, consider:

  • Using --no-tunnel for local-only access
  • Using --local-only to restrict to localhost
  • Setting up a named Cloudflare Tunnel with Access policies

License

MIT