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

@keepur/beekeeper

v1.3.2

Published

Claude Code session gateway — real development from your phone

Downloads

1,357

Readme

Beekeeper

The operator CLI for Hive. Drives Hive installs, manages devices, and serves Claude Code sessions to remote clients (iOS, web).

npm License

The package ships two binaries:

  • beekeeperd — gateway daemon, owned by launchd. WebSockets in, Claude Code sessions out.
  • beekeeper — operator CLI. Installs the daemon, drives Hive lifecycle, manages devices.

Install

sudo npm i -g @keepur/beekeeper
beekeeper install

beekeeper install is one-shot: writes a LaunchAgent plist, creates a config dir at ~/.beekeeper/, and loads the daemon. Daemon's running on :8420 by the time the command returns.

Set up Hive

beekeeper hive setup

This fetches the latest @keepur/hive release and opens a Claude Code session that walks you through hive init, Slack pairing, dependency setup (Node, MongoDB, Ollama, Qdrant), and your first conversation. Budget about 20 minutes. Re-running detects existing instances; pass --force to install fresh.

beekeeper hive list      # show installed instances + run state
beekeeper status         # gateway health

Pair a device

beekeeper user add <id> "<display name>"     # one-time, register the user
beekeeper pair <id> "iPhone"                 # 6-digit code, 10-min TTL

Enter the code in the Keepur iOS app (or any client speaking the beekeeper protocol). Devices auth with JWTs from there.

Common commands

beekeeper help                 # full command list
beekeeper status               # gateway health (sessions, connected devices)
beekeeper sessions list        # active Claude Code sessions
beekeeper devices list         # registered devices
beekeeper hive setup           # install/upgrade hive on this Mac
beekeeper hive list            # all hive instances + run state
beekeeper user list            # registered users
beekeeper pair <user> <label>  # issue a pairing code
beekeeper install              # install/reload the LaunchAgent
beekeeper uninstall            # remove the LaunchAgent

--json is accepted on status, sessions list, devices list, capabilities.

Update

sudo npm i -g @keepur/beekeeper@latest
beekeeper install

install is idempotent: regenerates the wrapper + plist and bootout-then-bootstrap the LaunchAgent so the new daemon is running before the command returns.

TLS / remote access

If you reach beekeeper from anything other than localhost, put TLS in front of :8420. Beekeeper serves plain HTTP/WS by design — bring your own Cloudflare Tunnel, Tailscale Funnel, Caddy, nginx, etc. iOS clients won't connect over plain ws:// (App Transport Security blocks it). Localhost-only setups need nothing extra.

Docs

For deeper reading or when you need the API surface:

  • Configurationbeekeeper.yaml, env vars, LaunchAgent details.
  • API reference — REST endpoints (device self-service, admin, internal).
  • Federation — how Hive (or any sibling) registers as a ?channel= capability.
  • Architecture — what's inside the gateway.
  • Development — contributing, running from source, releasing.

License

Apache-2.0. See LICENSE.