Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

create-volo-app

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-volo-app

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

latest
Source
npmnpm
Version
0.3.1
Version published
Weekly downloads
15
-64.29%
Maintainers
1
Weekly downloads
 
Created
Source

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)
  • 🔥 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

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:

  • Go to Cloudflare Pages → "Create a project"
  • Connect your Git repository
  • Configure build settings:
    • Build command: pnpm run build
    • Output directory: ui/dist
  • 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

Keywords

volo-app

FAQs

Package last updated on 13 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts