Cookbook
Each example is a complete capsule. Copy, edit, ship.
01
todo
Per-user rows, ownership checks, checkbox mutation, clear-completed. The smallest useful Luminaweb app.
luminaweb new my-app --template todo
02
guestbook
Shared feed, author metadata from auth, bounded text validation. Demonstrates server-set trusted fields.
luminaweb new my-app --template guestbook
03
chat
Realtime-feel message feed with useQuery invalidation. End-to-end typed messages.
luminaweb new my-app --template chat
04
counter
One button, one number, one mutation. The whole runtime, in 30 lines.
luminaweb new my-app --template counter
05
webhook
Stripe-shaped webhook receiver with shared-secret verification. Demonstrates endpoint() and ctx.env.
luminaweb new my-app --template webhook
06
blank
An empty capsule. The smallest possible surface area.
luminaweb new my-app --template blank