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-blazefw

v0.1.1

Published

Create a new Blazefw application

Downloads

214

Readme

create-blazefw

Official scaffolding CLI for BlazeFW. Sets up a new project interactively — picking your renderer target and which pillars to include — so you only install the packages you actually need.

Usage

npx create-blazefw my-app

Or with a package manager:

pnpm dlx create-blazefw my-app
yarn dlx create-blazefw my-app

Interactive setup

┌  create-blazefw
│
◇  Project name: my-app
│
◇  Renderer target
│  ● Web (React + inline styles)
│  ○ Native (React Native)
│  ○ Email (HTML strings)
│
◇  Which pillars do you want to include?
│  ◼ Zero-Fetch Sync      @blazefw/core + @blazefw/crdt + sync server
│  ◼ Sidecar Worker       @blazefw/sidecar — offloads 3rd-party scripts
│  ◼ Nexus Inspector      @blazefw/inspector — dev overlay (Alt+I)
│  ◼ Snapshot Boundary    @blazefw/snapshot — time-travel error recovery
│  ◼ Accessibility Layer  @blazefw/a11y + nexus-a11y compliance CLI
│
◇  Package manager
│  ● pnpm  ○ npm  ○ yarn
│
◇  Dependencies installed.
│
└  Your project is ready!

   cd my-app
   pnpm dev

What gets scaffolded

Depending on your choices, create-blazefw generates:

my-app/
├── src/
│   ├── main.tsx              — Vite entry point with injectTheme()
│   ├── App.tsx               — starter app using your chosen renderer
│   └── components/
│       └── Dashboard.ultimate.tsx  — example .ultimate.tsx component
├── vite.config.ts            — wired to @blazefw/vite-plugin
├── tsconfig.json
├── package.json              — only the @blazefw/* packages you chose
└── index.html

If Zero-Fetch Sync is selected, also generates:

my-app/
└── server/
    └── sync.ts               — @blazefw/sync-server starter

If Accessibility Layer is selected, also generates:

my-app/
└── scripts/
    └── a11y-audit.sh         — nexus-a11y CI audit script

Add a feature after setup

# From your project root
blazefw add sync        # adds @blazefw/core + @blazefw/crdt + sync server
blazefw add sidecar     # adds @blazefw/sidecar
blazefw add inspector   # adds @blazefw/inspector
blazefw add snapshot    # adds @blazefw/snapshot
blazefw add a11y        # adds @blazefw/a11y + nexus-a11y

The add command:

  • Auto-detects your package manager (pnpm → yarn → npm)
  • Merges new dependencies into package.json
  • Copies feature template files (non-destructive — does not overwrite existing files)
  • Runs install automatically

Options

# Skip interactive prompts — use defaults
npx create-blazefw my-app --default

# Specify renderer upfront
npx create-blazefw my-app --renderer web
npx create-blazefw my-app --renderer native
npx create-blazefw my-app --renderer email

# Use a specific package manager
npx create-blazefw my-app --pm npm
npx create-blazefw my-app --pm yarn
npx create-blazefw my-app --pm pnpm

Minimum install (no CLI)

If you prefer to wire things up manually:

# Minimal web app
npm install @blazefw/primitives @blazefw/web
npm install -D @blazefw/vite-plugin

# Add sync
npm install @blazefw/core @blazefw/crdt
npm install @blazefw/sync-server   # server-side

# Add a11y
npm install @blazefw/a11y