create-workerstack
v0.1.4
Published
Scaffold a full-stack Cloudflare Workers app with Hono, React, MUI, Better Auth, and Drizzle
Readme
create-workerstack
Scaffold a full-stack Cloudflare Workers app in seconds.
Quick Start
# With bun (recommended)
bunx create-workerstack@latest my-app
# With npm
npm create workerstack@latest my-app
# With pnpm
pnpm create workerstack@latest my-appWhat's Included
| Technology | Role | |---|---| | Cloudflare Workers | Edge-first serverless runtime | | Hono | Ultrafast web framework | | React 19 | UI library with SSR support | | MUI Material | Production-grade component library | | Better Auth | Authentication (email/password, OAuth, admin) | | Drizzle ORM | Type-safe SQL ORM with PostgreSQL | | Vite | Build tool with HMR | | Resend | Transactional email service | | TypeScript | End-to-end type safety |
CLI Options
The CLI walks you through an interactive setup:
- Project name — also used for
package.jsonandwrangler.jsonc - Description — sets
package.jsondescription - Package manager — bun, npm, or pnpm
- Install dependencies — run install automatically after scaffolding
- Initialize git — run
git initin the new project
You can also pass the project name as an argument to skip the first prompt:
bunx create-workerstack@latest my-appAfter Scaffolding
cd my-app
cp .env.example .env # configure your environment variables
bun run dev # start the development serverLicense
MIT
