@convex-localfirst/component
v0.1.1
Published
Mountable Convex component for convex-localfirst: sync ledger, append-only change log, id map, field clocks.
Maintainers
Readme
@convex-localfirst/component
A mountable Convex component that holds all local-first sync bookkeeping — the op ledger (idempotency), the append-only change log, the local→server id map, and per-field write clocks — so your app schema only carries its own tables.
npm install @convex-localfirst/component// convex/convex.config.ts
import { defineApp } from "convex/server";
import localfirst from "@convex-localfirst/component/convex.config.js";
const app = defineApp();
app.use(localfirst);
export default app;Peer dependency: convex. MIT
