A modern CLI scaffolding tool that generates production-ready full-stack projects with multiple framework combinations. Unlike traditional scaffolding tools, create-faster enables you to create multiple applications simultaneously with automatic monorepo orchestration.
Visit https://create.plvo.dev/docs for more details.
- Multiple frameworks: Next.js, Expo, Hono
- Automatic monorepo: Turborepo configuration for 2+ apps
- Modular system: 11+ optional modules (shadcn/ui, Better Auth, TanStack Query, MDX, PWA, etc.)
- Database support: PostgreSQL, MySQL with Prisma or Drizzle ORM
- Developer tools: Biome formatter/linter, Husky git hooks
- Dual modes: Interactive prompts or CLI flags for automation
- Type-safe: Full TypeScript support with strict configuration
- Auto-generated CLI commands: Copy-paste ready command to recreate projects
More features coming soon, check the roadmap for more details.
# Using your favorite package manager
npm create faster
pnpm create faster
bun create fasterCreate a Next.js app with shadcn/ui and TanStack Query, using PostgreSQL with Drizzle:
bunx create-faster myapp \
--app myapp:nextjs:shadcn,tanstack-query \
--database postgres \
--orm drizzle \
--git \
--pm bun \
--extras biome,huskyCreate a full-stack SaaS project with web (Next.js), mobile (Expo), and API (Hono) in a turborepo:
bunx create-faster mysaas \
--app web:nextjs:shadcn,mdx,better-auth \
--app mobile:expo:nativewind \
--app api:hono \
--database postgres \
--orm drizzle \
--git \
--pm bun \
--extras biome,husky