Templates
| Template | What you get | Use when you need |
|---|---|---|
ui | React app with Vite | A web app, dashboard, landing page |
process | Hono HTTP server | An API, webhook handler, cron job, worker |
realtime | UI + Process | A local-first app with live sync + offline |
UI
Single-page React app. Entry point:src/main.tsx. Deploys as a static site on Fly.io. This is the default when you ask for a landing page, dashboard, or any frontend-only app.
Process
Hono HTTP server. Entry point:server/server.ts. Health check at GET /health. Use for APIs, webhooks, scheduled jobs, data processing — anything that runs on the server without a UI.