Quickstart
Scaffold a synced local-first app in one command.
Scaffold a new Jazz app
pnpm create jazzPick a framework, hosting mode, and auth style when prompted. The scaffolder installs dependencies and — if you chose hosted — provisions an app on Jazz Cloud with env vars filled in for you.
What you get
schema.ts— the source of truth for your data. Tables, types, and queries all flow from here. See Schemas.permissions.ts— row-level access, pre-wired. See Permissions.- A Jazz provider and a todo UI you can reshape into your own app.
Next steps
- Model your own data — edit
schema.ts, then usedb.insertanddb.subscribeAllfrom your components. See Writing Data and Queries. - Add auth — see Authentication to go beyond an anonymous identity.
- Install into an existing app — see Install → Client or Install → TypeScript Server.