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

v1.1.1

Published

Scaffold a new project with the Blu Stack: Next.js, shadcn, Tailwind CSS, Supabase, TanStack Query, React Hook Form, Zod, React Email, and Resend

Readme

create-blu-app

npm version npm downloads license

Scaffold a new project with the Blu Stack — a curated, opinionated set of tools for building modern full-stack apps with Next.js.

Quickstart

# npm
npx create-blu-app@latest

# pnpm
pnpm create blu-app

# yarn
yarn create blu-app

# bun
bunx create-blu-app

Or pass a project name directly:

npx create-blu-app@latest my-app

Use --default to skip prompts and include all features:

npx create-blu-app@latest my-app --default

What's Included

Every project starts with Next.js 16, TypeScript, Tailwind CSS, and Turbopack. On top of that, you choose which features to add:

  • shadcn/ui — All components installed and ready to use. Beautiful, accessible, and fully customizable.
  • Supabase — Pre-configured client, server, and proxy helpers for auth with automatic session refresh. Includes example auth pages (login, sign-up, forgot/update password) when paired with shadcn/ui.
  • TanStack Query — Async state management with a provider, singleton QueryClient, and devtools.
  • React Hook Form + Zod — Type-safe form validation with Zod v4 schema integration.
  • React Email + Resend — A starter email template and server action for sending transactional emails.
  • ESLint + Prettier — Linting with eslint-config-prettier and formatting with prettier-plugin-tailwindcss.
  • React Compiler — Automatic memoization via babel-plugin-react-compiler (off by default, experimental).

All features except React Compiler are selected by default in the interactive prompt. Deselect any you don't need.

Options

| Flag | Description | |------|-------------| | --default | Use all default features without prompting | | --use-npm | Use npm as the package manager | | --use-yarn | Use yarn as the package manager | | --use-pnpm | Use pnpm as the package manager | | --use-bun | Use bun as the package manager | | --dry-run | Show what would be generated without writing any files | | --no-git | Skip git init and initial commit |

When no package manager flag is passed, the CLI auto-detects which one you used to run the command.

Generated Project Structure

Structure shown with all features selected. Files are only generated for the features you choose.

my-app/
├── src/
│   ├── actions/
│   │   ├── auth.ts                  # Server actions (login, signup, forgot/update password, logout)
│   │   └── send-email.ts           # Server action for sending emails
│   ├── app/
│   │   ├── auth/
│   │   │   ├── login/page.tsx       # Login (email + password)
│   │   │   ├── sign-up/page.tsx     # Register (name, email, password, confirm)
│   │   │   ├── sign-up-success/page.tsx
│   │   │   ├── forgot-password/page.tsx
│   │   │   ├── update-password/page.tsx
│   │   │   ├── confirm/route.ts     # Email confirmation handler
│   │   │   └── error/page.tsx
│   │   ├── layout.tsx              # Root layout with providers
│   │   └── page.tsx
│   ├── components/
│   │   ├── logout-button.tsx        # Sign-out button component
│   │   └── ui/                     # shadcn/ui components
│   ├── lib/
│   │   ├── schemas.ts               # Zod schemas (login, signup)
│   │   └── supabase/
│   │       ├── client.ts            # Browser client
│   │       ├── server.ts            # Server client
│   │       ├── proxy.ts             # Session refresh helper
│   │       └── hooks.ts             # TanStack Query hooks (useUser)
│   ├── providers/
│   │   ├── get-query-client.ts     # QueryClient singleton
│   │   └── query-provider.tsx      # TanStack Query provider
│   └── proxy.ts                    # Next.js proxy (middleware)
├── emails/
│   └── welcome.tsx                 # Starter email template
├── .env.local.example              # Environment variables template
├── .prettierrc
└── eslint.config.mjs

Requirements

  • Node.js 20.9 or later

License

MIT