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

openpouch

v0.4.0

Published

openpouch 🦘 — agent-native hosting, built for coding agents. Deploy any folder to a live URL in one command: npx openpouch deploy

Readme

openpouch 🦘

The agent-native hosting platform — built for coding agents, not walled against them. Deploy any folder to a live URL in one command — no account, no dashboard, no CAPTCHA:

npx openpouch deploy

Status: technical preview. openpouch deploy serves static sites (HTML/SPAs/build output) and runs real Node.js apps in a hardened container — autonomously, from any agent or terminal. Previews are ephemeral (unclaimed ones vanish after 72 h); durable production hosting and self-service billing are on the way. Feedback welcome on GitHub.

You get a live https://<slug>.openpouch.sh URL plus a claim link. The agent deploys autonomously; a human claims it via the link to keep it. openpouch writes the deployment truth (deploy.manifest.json, deploy.evidence.json, DEPLOYMENT.md) back into your repo, so any agent can resume after context loss.

Framework frontends (React/Vite/Next/Svelte…): deploy the built output, not the source folder. Build first, then point deploy at the build directory:

npm run build
npx openpouch deploy dist     # Vite → dist/ · CRA → build/ · Next static export → out/

If you run openpouch deploy in an unbuilt frontend root, it stops and tells you which folder to deploy instead of silently shipping source that won't run (use openpouch deploy . to force the current folder). Server-side build-on-deploy is live — pass the source folder explicitly (openpouch deploy .) and the server runs npm run build for you, for both full-stack apps (an Express/Node server with a build step) and unbuilt static SPAs (a Vite/CRA frontend with no server → built, then served as files).

Accounts (optional)

Start anonymous, or create a free account for higher limits — entirely from the agent, no dashboard:

npx openpouch signup --email [email protected]    # or: --github
npx openpouch activate --account <id> --token <token-from-email>
npx openpouch whoami --json                      # your tier + current usage

Your API key is stored locally; deploys then run under your account and quota. Abuse is controlled with accounts, quotas, rate limits and an egress filter — never by asking a machine to prove it's human.

Bring your own provider

Already on Render or Vercel? openpouch init detects your project and maps the service; then openpouch preview / openpouch prod run a governed pipeline — previews autonomous, production gated behind a human approval. Agents can never self-approve production.

Commands

deploy · list · delete · signup · activate · whoami · init · inspect · plan · preview · prod · approve · verify · logs · rollback · feedback — every command supports --json and stable exit codes, so any agent harness with a shell can drive it. An MCP server exposes the same tools.

  • Source & docs: https://github.com/openpouch/openpouch
  • License: Apache-2.0