A graph-based realtime replication engine for creating offline first multiplayer applications. SolidState can replicate data peer-to-peer, through a persitent triplestore, or on Solid PODs.
SolidState is local-first. It can be used entirely without replication between stores as local client storage.
import SolidState from "solidstate-kv"
const db = SolidState({
graph: "your-graph-name"
})
const reference = await db.post({
"@type": "Document",
"name": "Your Document Goes Here"
})