create-clawnify-app
v0.1.0
Published
Scaffold a Clawnify app — run via `pnpm create clawnify-app@latest my-app --yes` (or npm/yarn/bun create).
Downloads
162
Maintainers
Readme
create-clawnify-app
Scaffold a new Clawnify app in one command. Works with any package manager.
Usage
pnpm create clawnify-app@latest my-app --yes
# or
npm create clawnify-app@latest my-app --yes
yarn create clawnify-app@latest my-app --yes
bun create clawnify-app@latest my-app --yesThen:
cd my-app
pnpm install # use your package manager of choice
pnpm dev # http://localhost:5173What you get
- Hono + React + Vite + TypeScript on Cloudflare Workers
@clawnify/dbwith the typed Drizzle path (D1 in live, Facet in preview)schema.tsas the single source of truth — noschema.sqlto keep in syncdrizzle.config.ts+ a pre-generated initial migration- Tailwind + a polished welcome card on first dev
clawnify deployready to push live
See docs/build-a-clawnify-app.md for the full gold-standard guide.
What this package is
A 30-line wrapper around clawnify init. It exists so pnpm create clawnify-app follows npm's create-* convention. The real CLI lives at clawnify.
Without create
If you've already installed clawnify globally:
clawnify init my-app --yesIdentical result.
