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

v0.3.3

Published

CLI tool to create AI-ready full-stack apps with an integrated React frontend, Hono backend, Auth, and Postgres database.

Readme

create-volo-app

AI-ready Full‑Stack Starter Kit for Vibe Coding, Rapid Prototyping & Production Scaling

Create full-stack apps with React, Firebase Auth, and Postgres all set up for you. Start with a full local stack in under 30 seconds and use connect when ready - or use the --full flag to immediately start with production services hooked up.

Demo

Quick Start

# Local development (default) - working app in 30 seconds!
npx create-volo-app my-app

# Full production setup
npx create-volo-app my-app --full

What You Get

Full Stack:

  • ⚛️ React + TypeScript + Vite
  • 🎨 Tailwind CSS + ShadCN components
  • 🔐 Firebase Authentication (Google Sign-In + optional anonymous access)
  • 🔥 Hono API backend (NodeJS)
  • 🗄️ Postgres database with Drizzle ORM

Local Development (Default):

  • ⚡ Runs UI + Server + DB + Auth on your computer
  • 🏠 Embedded PostgreSQL database
  • 🔧 Firebase Auth emulator
  • ✅ Zero sign-ins or accounts needed

Production (Optional):

  • 🌐 Cloudflare Pages + Workers deployment ready
  • 🗄️ Neon, Supabase, or custom PostgreSQL
  • 🔐 Production Firebase Auth

Development Modes

🏠 Local Development (Default)

Perfect for learning, prototyping, and development:

npx create-volo-app my-app
cd my-app
pnpm run dev
  • Zero authentication required
  • Working app in 30 seconds
  • All services running locally
  • Full authentication and database functionality

🌍 Production Setup

For production-ready apps:

# All production services
npx create-volo-app my-app --full

# Modular: mix local and production services
npx create-volo-app my-app --auth          # Production Firebase + local database
npx create-volo-app my-app --database neon # Production database + local auth
npx create-volo-app my-app --deploy        # Deployment setup + local services

🔗 Progressive Connection

Start local, connect production services later:

# Start with local development
npx create-volo-app my-app
cd my-app

# Connect production services when ready
pnpm connect:auth           # Production Firebase Auth
pnpm connect:database       # Choose database provider
pnpm connect:deploy         # Cloudflare deployment
pnpm connection:status      # Check current setup

🔐 Authentication Configuration

When setting up Firebase Auth, you'll be asked if you want to allow anonymous users to access your app:

  • Enabled: Users can explore your app immediately, then sign in later to keep their data
  • Disabled: Users must sign in before accessing any features

Defaults: Enabled in local/fast mode, disabled in interactive production setup.

Requirements

  • Node.js 20+
  • pnpm

The CLI will check and guide all other installation as needed.

Usage Examples

# Local development - instant setup
npx create-volo-app my-app

# Create project in current folder
npx create-volo-app .

# Production with specific database
npx create-volo-app my-app --database neon
npx create-volo-app my-app --database supabase

# Production Firebase Auth only
npx create-volo-app my-app --auth

# Full production setup
npx create-volo-app my-app --full

# Fast mode (minimal prompts)
npx create-volo-app my-app --full --fast

# Connect to existing project
npx create-volo-app --connect --database --path ./my-app
npx create-volo-app --status --path ./my-app

Local Services

Your local development environment includes:

  • Database: Embedded PostgreSQL at ./data/postgres
  • Auth: Firebase emulator with demo users
  • Frontend: http://localhost:5173
  • API: http://localhost:8787

All data persists locally between development sessions in the data folder within your project

Production Deployment

Backend (Cloudflare Workers)

cd server
pnpm run deploy

Set production environment variables (use wrangler for easier management):

# Recommended: Use wrangler CLI
cd server
wrangler secret put DATABASE_URL
wrangler secret put FIREBASE_PROJECT_ID  
wrangler secret put FIREBASE_PRIVATE_KEY
wrangler secret put FIREBASE_CLIENT_EMAIL

# Alternative: Set in Cloudflare dashboard
# Go to Workers Dashboard > Your Worker > Settings > Variables

Frontend (Cloudflare Pages)

Manual Setup:

  1. Go to Cloudflare Pages → "Create a project"
  2. Connect your Git repository
  3. Configure build settings:
    • Build command: pnpm run build
    • Output directory: ui/dist
  4. Deploy automatically on Git push

Add your Pages domain to Firebase:

  • Go to Firebase Console → Authentication → Settings → Authorized domains
  • Add your *.pages.dev domain

Automated Deployment

For CI/CD, use GitHub Actions or similar with Cloudflare API tokens:

  • Workers: Use wrangler deploy in your pipeline
  • Pages: Automatic on Git push (or use Cloudflare API)

Development

git clone https://github.com/VoloBuilds/create-volo-app.git
cd create-volo-app
pnpm install
pnpm run build
node bin/cli.js test-app

Roadmap

  • Make Auth provider modular; support Supabase and Clerk auth
  • Make deployment target more modular (support Docker, different backend TS runtimes like Bun)
  • Create UI on top of the CLI for more intuitive project config
  • Build optional "commit to git" support to push created volo-app to Git
  • Build optional auto-deploy process (git actions + any platform-specific configs)
  • Add payment integration for Lemon Squeezy
  • Create templates for common usecases

Testing

See /test for testing tools and instructions.

Support

License

MIT