https://github.com/plvo/create-faster
⚡ Initialize any project with one CLI command - from single apps to complete monorepos
https://github.com/plvo/create-faster
cli react starter templates turborepo typescript
Last synced: 6 months ago
JSON representation
⚡ Initialize any project with one CLI command - from single apps to complete monorepos
- Host: GitHub
- URL: https://github.com/plvo/create-faster
- Owner: plvo
- License: mit
- Created: 2025-10-18T19:32:31.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2026-01-02T15:34:44.000Z (6 months ago)
- Last Synced: 2026-01-04T19:58:48.389Z (6 months ago)
- Topics: cli, react, starter, templates, turborepo, typescript
- Language: TypeScript
- Homepage: https://create.plvo.dev
- Size: 1.6 MB
- Stars: 6
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

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.
## Key Features
- **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](https://create.plvo.dev/docs/roadmap) for more details.*
## Usage Examples
### Interactive Mode
```bash
# Using your favorite package manager
npm create faster
pnpm create faster
bun create faster
```
### Single Application
Create a Next.js app with shadcn/ui and TanStack Query, using PostgreSQL with Drizzle:
```bash
bunx create-faster myapp \
--app myapp:nextjs:shadcn,tanstack-query \
--database postgres \
--orm drizzle \
--git \
--pm bun \
--extras biome,husky
```
### Multi-App Monorepo
Create a full-stack SaaS project with web (Next.js), mobile (Expo), and API (Hono) in a turborepo:
```bash
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
```
## Links
- [Website](https://create.plvo.dev)
- [Repository](https://github.com/plvo/create-faster)
- [Issues](https://github.com/plvo/create-faster/issues)
- [npm Package](https://www.npmjs.com/package/create-faster)
## License
[MIT](LICENSE) © [plvo](https://github.com/plvo)