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-gaia-app

v0.3.3

Published

Gaia template scaffolder + CLI — clone, install, deploy. Live URL in <30 minutes.

Readme

create-gaia-app

Scaffolder + CLI for Gaia — the agent-native TypeScript SaaS template.

Quick start

bun create gaia-app@latest myapp
cd myapp
bun dev                       # mock mode — see your app at http://localhost:3000

The app boots in mock mode by default. Polar (payments), Resend (email), Anthropic (AI), and the database all run as in-process fakes so you can iterate without signing up for any vendor.

Make it real (three on-ramps)

Recommended (Claude Code users)

/w-launch                     # interview-driven onboarding — JTBD interview, first feature, your real landing

CLI

bun gaia live                 # connect Polar / Resend / Neon / Railway interactively
bun gaia deploy && bun gaia smoke

Just exploring

bun dev                       # see the mock app, edit code, restart, iterate
bun run dev:all               # full stack — runs API + web in parallel (signup/login work)

What ships

create-gaia-app is one package with two binaries:

| Bin | Used for | Invoked by | | ----------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | | create-gaia-app | One-shot scaffolder. Clones template, installs deps, writes state.json, git init. | bun create gaia-app@latest <name> | | gaia | In-project verb runner: live, setup, verify-keys, deploy, smoke, status. | bun gaia <verb> (resolves via the scaffolded project's node_modules/.bin/) |

Verbs

| Verb | Purpose | | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | | gaia live | Flip VENDOR_MODE=mock → live. Walks through Polar / Resend / Neon / Railway signup + token paste. Free-tier on every vendor. | | gaia setup | Alias of live (back-compat with v0.2.x). | | gaia verify-keys | Non-interactive: validates each provider's API key against its real API. CI-safe. | | gaia deploy | Preflight → ship to Railway. Self-heals via d-fail classifier when the build breaks (typecheck, env, migration, lockfile, race conditions). | | gaia smoke | Sequential checks against the deployed URL: /health, auth round-trip, Polar webhook, dashboard load. Confirms the deploy is actually live. | | gaia status | Reports current state.json — what's verified, what's deployed, what's smoke-tested. | | gaia explain <error-code> | Looks up an error code (E1001, E2003, E3005, …) and returns the cause + fix + next command in JSON. |

Every verb supports the standard flag set: --json (NDJSON to stdout), --quiet, --verbose, --ci, --yes, --force, --state-file.

Vendors (when you go live)

| Vendor | Purpose | Free tier | | --------- | ------------------------------------------------------------------------------------ | --------------------------------- | | Polar | Merchant-of-record payments — checkout, subscriptions, customer portal. | Free tier (per-transaction fees). | | Resend | Transactional email — verify domain, send templated mail. | 3000 emails/month. | | Neon | Serverless Postgres — separate branch per PR for safe data migrations. | Free tier. | | Railway | Deploy host — handles build, deploy, healthcheck, and rollback. | $5 trial credit. | | Anthropic | LLM (Claude) for AI features. Per-user daily budget enforced by packages/security. | Pay-as-you-go (no free tier). |

Docs: https://github.com/henriquemeireles7/gaia/blob/master/docs/getting-started.md

Requirements

  • Bun ≥1.2 (engines.bun is enforced). The CLI uses #!/usr/bin/env bun shebangs and Bun-specific APIs.
  • macOS or Linux. Windows users get a clear exit-78 message pointing to WSL2.
  • Optional: Claude Code — Gaia is built to be driven by an AI coding agent. The CLI's NDJSON event stream + typed error catalog give the agent the same observability you have. The /w-launch skill ships in the scaffolded project at .claude/skills/w-launch/.

How bun create gaia-app works

bun create gaia-app@latest <args> is equivalent to bunx create-gaia-app@latest <args>. Bun rewrites the <name> token by prefixing create-, then invokes the package's default bin. This convention is shared by npm init, yarn create, and pnpm create — same package, four invocations.

License

MIT — see LICENSE.

Source + docs