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

create-ctrl-app

v0.2.5

Published

Start a project on a verified, locked backend that's already running — one prompt to a running app, a real database, and a great control panel.

Downloads

994

Readme

create-ctrl-app

One command to a running, locked backend your AI agent can't silently break.

npx create-ctrl-app my-app

You get a running Next.js app with verified backend parts (auth, billing, email, jobs, storage…) already vendored in and locked to a content hash, a zero-config local database (pglite — no Docker, no signup), and a /ctrl control panel. Your agent wires the seams and builds the product; it doesn't re-derive or rewrite the infrastructure — and if it tries, the change shows up as a red diff locally and a failed check in CI.

Why

AI coding agents rebuild the same infrastructure on every project — slightly differently each time, unverified, and they'll happily "fix" your auth or swap your billing vendor mid-task. Ctrl AI vendors each capability as a part: real, readable, MIT source that lands in your repo, with a machine-readable contract, a conformance suite every vendor adapter must pass, and a lock that makes the part interiors mechanically off-limits. The agent keeps the fun part — your UI and business logic; the backend stays legible and under control.

  • Locked, not hidden. Parts are content-hashed in parts.lock; a pre-commit hook and CI (ctrlai audit + ctrlai conform) fail on any drift.
  • Swappable vendors. One capability, one interface, N vendors (Resend ↔ SES, Stripe ↔ Paddle). Swap is one command; your app code doesn't move.
  • Yours forever. No SDK, no telemetry, no lock-in. ctrlai eject cuts any part loose to plain code you own.

The first five minutes

npx create-ctrl-app my-app     # running, locked backend on a zero-config DB
cd my-app
npm run dev                    # open http://localhost:3000 — and /ctrl

ctrlai add billing.subscription   # vendor another verified part in
ctrlai provision db               # a real Postgres on YOUR Neon, migrated
ctrlai push                       # your repo on GitHub, CI turns on
ctrlai deploy                     # a live URL on YOUR Vercel

Every rung lands on your accounts. Ctrl AI never hosts your backend.

Related

| Package | What | |---|---| | ctrlai | The CLI: add / upgrade / eject / audit / conform / deploy | | @ctrlai/mcp | MCP server so coding agents can discover and install parts | | @ctrlai/core | The engine: contracts, lockfile, hashing, attestation |

Docs: ctrlai.com/docs · Catalog: ctrlai.com/parts · Built by Ctrl AI.

MIT licensed. © Ctrl AI authors.