Compile Targets
Quickback compiles your definitions into a complete Hono API running on Cloudflare Workers, backed by Cloudflare D1 or Neon Postgres.
The Quickback Compiler reads a single set of definitions — schema, firewall, access, guards, masking, views, actions — and emits a production Hono application for the Quickback Stack on Cloudflare.
Quickback for Hono API
Generates a complete Hono application: routes, middleware, types, OpenAPI spec, MCP server, security artifacts. Pair with Cloudflare D1 for SQLite at the edge or Neon for full PostgreSQL via Hyperdrive.
providers: {
runtime: defineRuntime('cloudflare'),
database: defineDatabase('cloudflare-d1'), // or 'neon'
auth: defineAuth('better-auth'),
}The DSL
See Definitions for the schema + security DSL — the same input drives every output the compiler emits.
Auth & JWT
App-level auth settings — role hierarchy, JWT bearer-token fast-path, and external-sign-in URLs for cookie-trusting consumer Workers.
Quickback for Hono API
Compile your TypeScript definitions into a production-ready Hono API on Cloudflare D1 or Neon — with security, validation, and OpenAPI built in.