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

astro-ignite

v0.1.0

Published

CLI for bootstrapping and maintaining production-grade Astro sites

Readme

astro-ignite

astro-ignite banner

Astro sites, built for AI agents.

# Bootstrap a new project
npx astro-ignite bootstrap my-site

# …or the npm sugar
npm create astro-ignite@latest my-site

A shadcn-style CLI for production-grade Astro sites. Pick a template, answer a few prompts, and get a real project — every line of code is yours, with no runtime dependency on this tool once you've scaffolded.

astro-ignite is the primary CLI: bootstrap today, more subcommands (add, upgrade) coming. The create-astro-ignite package is a thin shim around astro-ignite bootstrap so the npm create UX keeps working.

Commands

npx astro-ignite bootstrap [project-dir] [options]   # scaffold a new project
npx astro-ignite --help                              # list commands

What you get (bootstrap)

  • Lighthouse 100s on mobile and desktop, CI-enforced
  • Astro 5 with native i18n, content collections, and Astro Actions
  • Tailwind v4 with a layered CSS strategy — scoped above-the-fold, utilities below, critical CSS extracted at build time
  • Typed Schema.org JSON-LD via schema-dts, composed per-page into one @graph
  • Image components with AVIF + WebP, responsive srcset, and LQIP placeholders
  • Geist Sans + Geist Mono through astro:fonts — self-hosted, zero CLS
  • Tri-state dark mode (light / dark / system) with an anti-flash inline script
  • Working contact form built on Astro Actions, Zod-validated, with Resend or SMTP
  • Cookie banner + legal pages (privacy, terms, cookies) — i18n-aware templates you adapt
  • Plausible analytics, env-gated and consent-gated
  • Sitemap, RSS, robots, manifest — all i18n-aware
  • Blog and projects as content collections with strict Zod schemas
  • A copy-paste component registry — 18 atoms + 14 blocks

Templates

| Template | Use case | Live preview | | ------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------- | | starter (default) | Marketing site + blog + projects, contact form, full i18n, legal pages | starter.astroignite.dev | | docs | Documentation site built from primitives (no Starlight); search via Pagefind | docs-starter.astroignite.dev |

Pick one interactively or pass --template=<kind>.

Bootstrap flags

| Flag | What it does | | ----------------------------- | ----------------------------------- | | -y, --yes | Skip prompts, use defaults | | --no-install | Skip dependency install | | --no-git | Skip git init | | --pm=<npm\|pnpm\|yarn\|bun> | Force a specific package manager | | --template=<starter\|docs> | Pick the template non-interactively | | -h, --help | Print help |

Examples

# Interactive — pick a template, answer prompts
npx astro-ignite bootstrap my-site

# Non-interactive — sane defaults, no prompts
npx astro-ignite bootstrap my-site --yes

# Try the beta channel
npx astro-ignite@beta bootstrap my-site

Requirements

  • Node.js >=20.11.0
  • One of: npm, pnpm, yarn, bun

Source & docs

License

MIT.