automerge
Gleam bindings for automerge-rs via a Rustler NIF.
Automerge is a CRDT library for building collaborative applications. This package exposes the automerge sync protocol so multiple peers can converge on a shared document state.
Installation
gleam add automergeUsage
import automerge
// Create a new document
let doc = automerge.doc_new()
// Sync two documents
let state_a = automerge.sync_state_new()
let state_b = automerge.sync_state_new()
// Generate and exchange sync messages until both sides are in sync
let msg = automerge.generate_sync_message(doc, state_a)
// ... send msg to peer, receive their message ...
automerge.receive_sync_message(doc, state_b, msg)Building from source
Requires Rust. Set AUTOMERGE_BUILD=1 to compile the NIF locally:
AUTOMERGE_BUILD=1 gleam testLicense
MIT