Reactive, distributed, secure
Smooth database.
Jazz is a new kind of database that's distributed across your frontend, containers, serverless functions and its own storage cloud.
It syncs structured data, files and LLM streams instantly.
It looks like local reactive JSON state.
And you get auth, orgs & teams, real-time multiplayer, edit histories, permissions, E2E encryption and offline-support out of the box.
This lets you get rid of 90% of the traditional backend, and most of your frontend state juggling. You'll ship better apps, faster.
Self-host or use Jazz Cloud for a zero-deploy globally-scaled DB.
Open source (MIT)
npx create-jazz-app@latest
Supported environments
Build apps with
Optionally add server workers
How it works
Build entire apps with collaborative state
Step1
Describe your app’s state with CoValues ("collaborative values"), your new cloud-synced building blocks.
import { co, z } from "jazz-tools"; const Message = co.map({ text: z.string(), }); const Chat = co.list(Message);
Step2
Connect to sync and storage infrastructure — Jazz Cloud or self-hosted.
<JazzReactProvider sync={{ peer: "wss://cloud.jazz.tools" }} > {children} </JazzReactProvider>
Step3
Create and edit CoValues, and they will be synced and persisted automatically.
const message = Message.create({ text: “Hello world!” }, chat._owner); chat.push(message);
Step4
Use CoValues like reactive local state. Get instant UI updates on every edit — across all devices and users. 🎉
import { useCoState } from "jazz-tools/react"; const ChatScreen = ({ id }) => { const chat = useCoState(Chat, id); return chat.messages.map(msg => ( <p>{msg.text}</p> )); }
You don't have to think about deploying a database, SQL schemas, relations, and writing queries… Basically, if you know TypeScript, you know Jazz, and you can ship an app. It's just so nice!
A database that does what's actually needed
Every stack is a re-invention of shared state.
For each new app you tackle a mess of moving parts and infra worries. Your backend is responsible for shuffling data around in a myriad of ways.
Want to build a modern app with multiplayer or offline-support? Figma, Notion and Linear all had to spend years on completely custom stacks.
What if we started from shared state?
Jazz gives you local state that’s instantly synced and stored in the cloud. Including images and files. With users & permissions built-in.
With a DB and infra made for modern apps you get to focus on building the app your users want. You'll notice that 90% of the work is now the UI.
Local-first state with global sync
With cloud-synced local state, your data is kept on-device, and synced whenever possible.
Role-based permissions
Making secure collaboration the default
Group
, where you can assign roles to users to control access — all from the client.Private
By default, CoValues are visible only to you.
Message.create({ text: "Private message to myself." });
Shared
Use Groups for precise access control.
const group = Group.create(); group.addMember(Alice, "writer"); group.makePublic(); Message.create({ text: "..." }, group);
By Invitation
Create links that allow anyone to join.
// links to message, Group is inferred createInviteLink( messageId, "writer", // role that recipient gets );
End-to-end encrypted and tamper-proof
The syncing server never sees your data in plaintext. Instead of trusting centralised authorisation, Jazz uses public-key cryptography. Your edits are encrypted and signed on-device, verifiable by everyone and readable only by those given access.
We just wanted to build a single-player experience first, planning to add team and org features much later. But because of Jazz, we had that from day one. All we needed to add was an invite button.
Everything else you need to ship quickly
We take care of the groundwork that every app needs, so you can focus on building the cool stuff that makes your app unique.
BinaryCoStream.createFromBlob(file);
File uploads
<input type="file"/>
, and easily convert from and to Browser Blobs
using a BinaryCoStream
CoValue.
400x300

Progressive image loading
ImageDefinition
component, you get progressive image up & downloading, super fast blur preview, and image size info.Server workers
Authentication
Jazz Cloud
Jazz Cloud is real-time sync and storage infrastructure that scales your Jazz app up to millions of users. Instant setup, no config.
- Data & blob storage
- Global sync
- No limits for public alpha
I talked with the team. They work really hard. The Jazz team clearly cares, almost maybe too much, about making Jazz a great solution.
One of the best experiences I've had working with open source devs on a short notice.

Get started
Let's build your next app together
Whether you're building something big with Jazz or just trying things out, we've got a team of developers who have seen and built everything.
We're happy to help you hands-on with your app, and ready to tailor Jazz features to your needs.