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

yepanywhere

v0.5.2

Published

A mobile-first supervisor for Claude Code agents

Readme

A better remote interface for Claude Code and Codex. Self-hosted, no cloud accounts. Supervise your agents from your phone while they run on your dev machines.

Features

  • Interop — View and resume sessions started in CLI, VS Code, or other tools. No new database — piggybacks on CLI persistence
  • File uploads — Share screenshots, photos, PDFs, and code files directly from your phone's camera roll
  • Push notifications — Get alerted when approval is needed, respond from your lock screen
  • E2E encrypted remote access — Connect from anywhere via our free relay. We can't see your data (SRP-6a + TweetNaCl)
  • Fork/clone conversations — Branch from any message point to explore alternatives
  • Tiered inbox — Needs Attention → Active → Recent → Unread. Stop cycling through terminal tabs
  • Global activity stream — See what all your agents are doing across sessions
  • Remote device control — Stream Android emulators and devices to your phone over WebRTC. Touch input, nav buttons, adaptive quality
  • Server-owned processes — Client disconnects don't interrupt work
  • Voice input — Talk to your agents via browser speech API
  • Fast on mobile — Syntax highlighting and markdown rendering happen server-side

No database, no cloud, no accounts. 100% open source (MIT).

Supported Providers

| Provider | Diffs | Approvals | Streaming | Notes | |----------|-------|-----------|-----------|-------| | Claude Code | Full | Yes | Yes | Primary provider, full feature support | | Codex | Full | Yes | Yes | Full support including diffs and approvals |

Screenshots

Works great on desktop too!

Getting Started

If you can install Claude Code or Codex, you can install this. Minimal dependencies.

npm i -g yepanywhere
yepanywhere

Or, from source:

git clone https://github.com/kzahel/yepanywhere.git
cd yepanywhere
pnpm install
pnpm build
pnpm start

Open http://localhost:3400 in your browser. The app auto-detects installed CLI agents.

Updating

For the npm-global install:

npm update -g yepanywhere

Then restart yepanywhere.

For a source checkout:

git fetch origin
git merge origin/main
pnpm install
pnpm build

Then restart the server with pnpm start.

Voice Input and STT Keys

Browser-native voice input works without extra configuration. To use server-mediated STT, export the provider key in the Yep Anywhere server environment before starting the app:

export YA_stt__XAI_API_KEY="xai-..."
export YA_stt__DEEPGRAM_API_KEY="deepgram-..."

Providing YA_stt__XAI_API_KEY auto-enables the ya-grok backend; providing YA_stt__DEEPGRAM_API_KEY auto-enables the ya-deepgram backend. These YA_<module>__<NAME> secrets are consumed by Yep Anywhere and stripped from child agent environments. The STT-specific xAI key is preferred over a general XAI_API_KEY, which lets speech transcription use different billing from any Grok model or CLI usage.

If you already exported xAI's standard XAI_API_KEY, Yep Anywhere will also use it for Grok STT and scrub it from child agent environments. Grok Build does not receive XAI_API_KEY by default, avoiding accidental pay-as-you-go provider billing; Settings > Providers has an explicit opt-in to pass that key to Grok Build. For backend behavior and retention details, see the server-mediated STT topic; for the broader environment variable table, see topics/ya-env-vars.md.

Remote Access

Easiest: Use our free public relay when you want passworded, end-to-end encrypted access from any browser. Configure it in Settings, or via CLI for headless setups:

yepanywhere --setup-remote-access --username myserver --password "secretpass123"

Then connect from anywhere at yepanywhere.com/remote.

All traffic is end-to-end encrypted and we can't see your data. No accounts required.

Private network: If you only need to reach a solo install from your phone, a VPN such as Tailscale is usually simpler than deploying your own relay: put the phone and dev machine on the same private network, then open the Yep Anywhere server from the phone.

Self-hosted web access: Prefer to run your own public infrastructure? Use Caddy or any reverse proxy with SSL termination. See the remote access docs for details.

Why not just use the terminal?

You can use the terminal on your phone — but monospace text is painful on a small screen, there's no file upload, no push notifications, and no way to see all your sessions at once. This gives you a proper UI while keeping everything self-hosted and running your code locally.

Comparison to Other Tools

There are a lot of projects in this space. We track them all: docs/competitive/all-projects.md

Development

See DEVELOPMENT.md for build instructions, configuration options, and more. For client render/update architecture and performance invariants, see packages/client/RENDERING_PERFORMANCE.md.

TOS Compliance

Yep Anywhere uses the official @anthropic-ai/claude-agent-sdk published by Anthropic. We don't handle authentication, spoof headers, or manipulate OAuth tokens. You authenticate via your own Claude CLI — we're just a remote interface to your sessions.

Read more: How we use the SDK | Feb 2026 auth clarification

Star History

License

MIT