SolidState

Get Started

Introduction

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.

Get Started

import SolidState from "solidstate-kv"

const db = SolidState({
  graph: "your-graph-name"
})

const reference = await db.post({
  "@type": "Document",
  "name": "Your Document Goes Here"
})

Read The Docs Install