Momand

Sync & storage infrastructure

The data layer for local-first apps.

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

momand — shell
# start the engine
$ momand serve --data ./store

# create a namespace
$ momand ns create notes
→ namespace ready · api · sync

# write through the API
$ curl -X PUT /v1/notes/today \
    -d '{"body":"hello"}'
Momand Sync·Realtime sync·Durable storage·REST & streaming API·Single binary

Capabilities

01

Realtime sync

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

02

Durable storage

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

03

One clean API

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

Running in three steps.

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