Scaffold a new lacis project.
npm create lacis@latest
# or
npx create-lacisThe CLI will ask three questions:
- Project name — directory to create
- Platform — Node, Bun, Vercel, or Netlify
- Validation library — Zod, Valibot, ArkType, or none
It then scaffolds the project and installs dependencies automatically (auto-detects npm / pnpm / yarn / bun).
my-app/
routes/
index.ts # GET / — ready to run
server.ts
package.json
tsconfig.json
cd my-app
lacis devMIT