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

dumbridge

v1.0.3

Published

A short-lived, read-only bridge from one local directory to a cloud coding agent

Readme

dumbridge

dumbridge gives a cloud coding agent temporary, live, read-only access to one local directory.

Install

No install step is needed. Run it with bunx dumbridge or npx --yes dumbridge. Bun 1.3.14 or newer must be on PATH.

Quickstart

On the computer that owns the files:

  1. Start the bridge:
bunx dumbridge serve ~/projects/my-app
  1. Copy the printed DUMBRIDGE_KEY value.
  2. Put it in the cloud agent's environment as a secret. Do not log it or commit it.
  3. Keep the serve process running. Ctrl-C stops it and revokes access.

In the cloud agent:

npx --yes dumbridge run 'ls -la'
npx --yes dumbridge pull src/config.json

run evaluates one script against the served root and prints its output. pull copies one file or directory from the served root into the current directory.

Commands

  • dumbridge serve <root> serves one directory read-only and prints the bridge key. The key expires after 8 hours by default; set a different lifetime with --ttl '90 minutes'. --detach starts the server without a terminal, --stop ends a detached serve, and --status lists the active ones. --direct-only and --relay-only force the connection path.
  • dumbridge run '<script>' evaluates one Bash-shaped script against the served root in a bounded sandbox. Writes are discarded. It never runs the host shell.
  • dumbridge pull <remote-path> [destination] copies one file or directory from the served root. It verifies content, refuses symlinks, and never overwrites an existing destination.
  • dumbridge doctor diagnoses the network environment without a key and exits non-zero when a check fails.
  • dumbridge skill prints the bundled agent usage guide without contacting a bridge.

run and pull read the bridge key from DUMBRIDGE_KEY, or from --key-file <path> (- reads stdin). The key is never accepted as a command argument. Failures exit non-zero with a plain message that names the cause; --log-level debug on run or pull logs the dial sequence on stderr without exposing the key.

What it can and cannot do

  • Read-only. The agent can read files below the served root. It cannot write to your machine.
  • One directory. Only the directory you pass to serve is visible. Reads outside it are refused.
  • No host shell. run uses a sandboxed interpreter, and its writes are discarded.
  • Short-lived key. The bridge key is a bearer secret: anyone holding it can read the served root while serve runs. It expires on a deadline fixed when serve mints it, and stopping serve revokes it immediately.

Using it from a cloud agent

Put the DUMBRIDGE_KEY value in the agent's environment, then use run and pull as shown above. Proxy-jailed sandboxes work: the bundled iroh binding routes the relay connection through the environment's HTTP(S) proxy and can trust an extra CA certificate for TLS-intercepting proxies (DUMBRIDGE_CA_FILE, CODEX_PROXY_CERT, or SSL_CERT_FILE).

  • Claude Code on the web: set Network access to Full.
  • Codex Cloud: set the Domain allowlist to All (unrestricted).
  • Cursor: works with no extra setup.

If a connection fails, run npx --yes dumbridge doctor in the agent to diagnose the environment.

License

MIT