Girork
Girork 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.

Sync & storage infrastructure

The data layer for local-first apps.

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

Capabilities

Realtime sync

Changes replicate across every connected client in milliseconds, with deterministic conflict resolution.

Durable storage

An append-only log with point-in-time recovery keeps every write safe and auditable.

One clean API

A single REST and streaming interface — no SDK lock-in, no schema migrations to babysit.

Girork Sync·Realtime sync·Durable storage·REST & streaming API·Single binary

Running in three steps.

Point Girork 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 $ girork serve --data ./store # create a namespace $ girork ns create notes → namespace ready · api · sync # write through the API $ curl -X PUT /v1/notes/today \ -d '{"body":"hello"}'