AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.
Quick start
Build a sync-enabled React app in five steps.
Build a local-first React app with real-time sync, offline support, and undo/redo.
Skip the manual setup? Scaffold a complete app:
npx skills add mblode/stratasyncStep 1: Define your model
@ClientModel registers a class with the sync engine. @Property marks each synced field.
// models/task.ts
import { Model, ClientModel, Property } from "@stratasync/core";
@ClientModel