Introduction
Backend in 60 seconds. Ship your idea.
Welcome to Zuro
Stop wasting time on Express boilerplate. One command gives you a production-ready backend with TypeScript, auth, database, and validation. Perfect for hackathons, side projects, learning, or bootstrapping your next startup.
npx zuro-cli initThat's it. You're ready to build.
How It Works
Init
npx zuro-cli initCreates Express + TypeScript project with security, logging, and env validation.
Add Modules
npx zuro-cli add authAdd features when you need them. Dependencies are auto-installed—running add auth also sets up database, validator, and error-handler.
Quick Start
# Create project
npx zuro-cli init my-app
cd my-app
# Add auth (auto-installs database, validator, error-handler)
npx zuro-cli add auth
# Run
npm run dev# Create project
pnpm dlx zuro-cli init my-app
cd my-app
# Add auth (auto-installs database, validator, error-handler)
pnpm dlx zuro-cli add auth
# Run
pnpm dev# Create project
bun x zuro-cli init my-app
cd my-app
# Add auth (auto-installs database, validator, error-handler)
bun x zuro-cli add auth
# Run
bun run devOne command, full stack: Running zuro-cli add auth automatically installs database, validator, and error-handler if they're missing. No need to remember the order!
Available Modules
| Module | Command | What You Get |
|---|---|---|
| Core | zuro-cli init | Express, TypeScript, Helmet, CORS, Pino logger |
| Database | zuro-cli add database | Drizzle ORM, PostgreSQL or MySQL |
| Auth | zuro-cli add auth | Better-Auth, signup/login, sessions |
| Validator | zuro-cli add validator | Zod middleware for request validation |
| Error Handler | zuro-cli add error-handler | Custom error classes, consistent responses |
What Makes Zuro Different?
Tech Stack
Everything uses battle-tested libraries:
| Category | Library | Why |
|---|---|---|
| Framework | Express.js | Most popular Node.js framework |
| Language | TypeScript | Type safety out of the box |
| Database | Drizzle ORM | Type-safe queries, great DX |
| Auth | Better-Auth | Modern, flexible auth |
| Validation | Zod | Runtime + TypeScript validation |
| Security | Helmet | Secure HTTP headers |
| Logging | Pino | Fastest JSON logger |
Project Structure
After zuro-cli init + adding modules:
app.ts
server.ts
env.ts
.env
drizzle.config.ts
package.json
tsconfig.json
zuro.json