Quickback Docs

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.

On this page