Tremum

Sync & storage infrastructure

The data layer for local-first apps.

Tremum keeps data in sync across devices and stores it durably — one engine, a clean API, no moving parts to manage.

Tremum APIv1
GET /v1/{ns}/{key}Read a single record.
PUT /v1/{ns}/{key}Create or replace a record.
DELETE /v1/{ns}/{key}Remove a record.
GET /v1/{ns}/_watchServer-sent stream of changes in the namespace.
Tremum Sync·Realtime sync·Durable storage·REST & streaming API·Single binary

Capabilities

Realtime syncChanges replicate across every connected client in milliseconds, with deterministic conflict resolution.
Durable storageAn append-only log with point-in-time recovery keeps every write safe and auditable.
One clean APIA single REST and streaming interface — no SDK lock-in, no schema migrations to babysit.

Running in three steps.

Point Tremum at a directory and connect. That's the whole setup.

  1. 1Start the engine on any host.
  2. 2Open a namespace for your app.
  3. 3Read and write through the API — sync is automatic.
# start the engine $ tremum serve --data ./store # create a namespace $ tremum ns create notes → namespace ready · api · sync # write through the API $ curl -X PUT /v1/notes/today \ -d '{"body":"hello"}'