Getting Started
Zeroback is an open-source real-time backend that runs on Cloudflare Workers and Durable Objects. Type-safe functions, reactive queries, and transactional mutations — on infrastructure you own.
Quickstarts
Section titled “Quickstarts”Pick your framework and follow the step-by-step guide:
How it works
Section titled “How it works”- Define your schema — Declare tables and validators in TypeScript. Zeroback generates types and SQL automatically.
- Write functions — Queries, mutations, and actions are plain TypeScript. They run on Cloudflare with transactional guarantees.
- Connect your frontend — Bind your UI to live data with a single hook. Queries re-render automatically when data changes — no polling.
- Deploy —
zeroback deployships to your Cloudflare account. Your data stays on your infrastructure.
Learn more
Section titled “Learn more”- Schema — Tables, indexes, validators, and search indexes
- Functions — Queries, mutations, actions, HTTP routes, cron jobs
- Database — Filters, pagination, full-text search
- How It Works — Architecture and real-time internals
- CLI —
init,dev,deploy,codegen,run,reset