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

vibestreak-server

v1.2.1

Published

Companion server bridging Vibestreak iOS app to Claude Code CLI. Run with: npx vibestreak-server --tunnel

Readme

vibestreak-server

Companion server that bridges the Vibestreak iOS app to Claude Code CLI. Code from your phone with AI — anywhere.

Quick Start

npx vibestreak-server --tunnel --cwd ~/your-project

Then scan the QR code in the Vibestreak app to connect.

Prerequisites

  • Node.js 18+Download
  • Claude Code CLI — Install with npm install -g @anthropic-ai/claude-code
  • cloudflared (optional, for remote access via --tunnel) — see installation below

Usage

# Start in current directory with remote tunnel
npx vibestreak-server --tunnel

# Start with a specific project directory
npx vibestreak-server --tunnel --cwd /path/to/project

# LAN-only mode (no tunnel, same network required)
npx vibestreak-server

# Custom port
npx vibestreak-server --port 8080 --tunnel

# Continue last Claude session
npx vibestreak-server --tunnel --continue

# Resume a specific session
npx vibestreak-server --tunnel --resume <session-id>

CLI Options

| Flag | Description | Default | |------|-------------|---------| | --tunnel | Enable Cloudflare tunnel for remote access | Off (LAN only) | | --cwd <path> | Project directory for Claude to work in | Current directory | | --port <number> | HTTP/WebSocket server port | 19275 | | --continue | Continue the last Claude session | — | | --resume <id> | Resume a specific Claude session by ID | — | | --token <token> | Override auth token (auto-generated if omitted) | Random |

How It Works

Vibestreak iOS App  <——WebSocket——>  vibestreak-server  <——stdio——>  Claude Code CLI
     (phone)            (tunnel)         (your PC)                    (your PC)
  1. The server starts Claude Code CLI as a subprocess
  2. Your phone connects via WebSocket (through a Cloudflare tunnel or local network)
  3. Messages are relayed between the app and Claude Code
  4. Claude has full access to your project directory (reads, writes, runs commands)

Platform Support

Core Server

Works on macOS, Windows, and Linux — anywhere Node.js and Claude Code CLI run.

Live Preview (Screenshots)

The screenshot feature captures your screen for in-app preview:

| Platform | Desktop Screenshot | iOS Simulator | |----------|-------------------|---------------| | macOS | screencapture | xcrun simctl | | Windows | PowerShell (System.Drawing) | Not available | | Linux | gnome-screenshot / scrot / import | Not available |

Cloudflared Installation

Remote access (--tunnel) requires cloudflared:

  • macOS: brew install cloudflared
  • Windows: winget install Cloudflare.cloudflared or choco install cloudflared
  • Linux: sudo apt install cloudflared or download from Cloudflare

Without cloudflared, the server runs in LAN-only mode (phone and PC must be on the same network).

Terminal Commands

While the server is running, you can type directly in the terminal:

  • Type any message to send it to Claude (just like the app)
  • /status — Show connection status
  • /clear — Clear the terminal
  • /quit — Shut down the server

Troubleshooting

"Claude CLI is not ready"

Ensure Claude Code is installed and in your PATH:

claude --version

If not installed: npm install -g @anthropic-ai/claude-code

"cloudflared: command not found"

Install cloudflared for your platform (see above), or run without --tunnel for LAN-only mode.

Screenshot not working

  • macOS: Grant Terminal "Screen Recording" permission in System Settings > Privacy & Security
  • Windows: Ensure PowerShell is available (comes pre-installed on Windows 10+)
  • Linux: Install gnome-screenshot, scrot, or imagemagick

App can't connect

  • With --tunnel: Check that the QR code is scanned correctly and cloudflared is running
  • Without --tunnel: Ensure phone and PC are on the same Wi-Fi network

License

MIT