Automerge Repo
This is a wrapper for the Automerge CRDT library which
provides facilities to support working with many documents at once, as well as pluggable networking
and storage.
This is the core library. It handles dispatch of events and provides shared functionality such as
deciding which peers to connect to or when to write data out to storage.
Other packages in this monorepo include:
Storage adapters
Network adapters
Usage
This library provides two main components: the Repo
itself, and the DocHandle
s it contains.
A Repo
exposes these methods:
create<T>(initialValue: T?)
Creates a new Automerge.Doc
and returns a DocHandle
for it. Accepts an optional initial value for the document. Produces an empty document (potentially violating the type!) otherwise.find<T>(docId: DocumentId)
Looks up a given document either on the local machine or (if necessary) over any configured
networks.delete(docId: DocumentId)
Deletes the local copy of a document from the local cache and local storage. This does not currently delete the document from any other peers.import(binary: Uint8Array)
Imports a document binary (from export()
or Automerge.save(doc)
) into the repo, returning a new handleexport(docId: DocumentId)
Exports the document. Returns a Promise containing either the Uint8Array of the document or undefined if the document is currently unavailable. See the Automerge binary format spec for more details on the shape of the Uint8Array..on("document", ({handle: DocHandle}) => void)
Registers a callback to be fired each time a new document is loaded or created..on("delete-document", ({handle: DocHandle}) => void)
Registers a callback to be fired each time a new document is deleted.
A DocHandle
is a wrapper around an Automerge.Doc
. Its primary function is to dispatch changes to
the document.
handle.doc()
or handle.docSync()
Returns a Promise<Doc<T>>
that will contain the current value of the document.
it waits until the document has finished loading and/or synchronizing over the network before
returning a value.handle.change((doc: T) => void)
Calls the provided callback with an instrumented mutable object
representing the document. Any changes made to the document will be recorded and distributed to
other nodes.
A DocHandle
also emits these events:
change({handle: DocHandle, patches: Patch[], patchInfo: PatchInfo})
Called whenever the document changes, the handle's .docdelete
Called when the document is deleted locally.
Creating a repo
The repo needs to be configured with storage and network adapters. If you give it neither, it will
still work, but you won't be able to find any data and data created won't outlast the process.
Multiple network adapters (even of the same type) can be added to a repo, even after it is created.
A repo currently only supports a single storage adapter, and it must be provided at creation.
Here is an example of creating a repo with a indexeddb storage adapter and a broadcast channel
network adapter:
const repo = new Repo({
network: [new BroadcastChannelNetworkAdapter()],
storage: new IndexedDBStorageAdapter(),
sharePolicy: async (peerId: PeerId, documentId: DocumentId) => true,
})
Share Policy
The share policy is used to determine which document in your repo should be automatically shared with other peers. The default setting is to share all documents with all peers.
Warning
If your local repo has deleted a document, a connecting peer with the default share policy will still share that document with you.
You can override this by providing a custom share policy. The function should return a promise resolving to a boolean value indicating whether the document should be shared with the peer.
The share policy will not stop a document being requested by another peer by its DocumentId
.
Starting the demo app
yarn
yarn dev
Quickstart
The following instructions will get you a working React app running in a browser.
yarn create vite
cd hello-automerge-repo
yarn
yarn add @automerge/automerge @automerge/automerge-repo-react-hooks @automerge/automerge-repo-network-broadcastchannel @automerge/automerge-repo-storage-indexeddb vite-plugin-wasm
Edit the vite.config.ts
. (This is all need to work around packaging hiccups due to WASM. We look
forward to the day that we can delete this step entirely.)
import { defineConfig } from "vite"
import react from "@vitejs/plugin-react"
import wasm from "vite-plugin-wasm"
export default defineConfig({
plugins: [wasm(), react()],
worker: {
format: "es",
plugins: () => [wasm()],
},
})
Now set up the repo in src/main.tsx
by importing the bits, creating the repo, and passing down a
RepoContext. We also create a document and store its documentId
in localStorage.
import React from "react"
import ReactDOM from "react-dom/client"
import App from "./App.js"
import { Repo } from "@automerge/automerge-repo"
import { BroadcastChannelNetworkAdapter } from "@automerge/automerge-repo-network-broadcastchannel"
import { IndexedDBStorageAdapter } from "@automerge/automerge-repo-storage-indexeddb"
import { RepoContext } from "@automerge/automerge-repo-react-hooks"
const repo = new Repo({
network: [new BroadcastChannelNetworkAdapter()],
storage: new IndexedDBStorageAdapter(),
})
let rootDocId = localStorage.rootDocId
if (!rootDocId) {
const handle = repo.create()
localStorage.rootDocId = rootDocId = handle.documentId
}
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<RepoContext.Provider value={repo}>
<React.StrictMode>
<App documentId={rootDocId} />
</React.StrictMode>
</RepoContext.Provider>
)
Now update App.tsx
to load the document from the Repo based on the documentId passed in. Then, use
the document to render a button that increments the count.
import { useDocument } from "@automerge/automerge-repo-react-hooks"
import { DocumentId } from "@automerge/automerge-repo"
interface Doc {
count: number
}
export default function App(props: { documentId: DocumentId }) {
const [doc, changeDoc] = useDocument<Doc>(props.documentId)
return (
<button
onClick={() => {
changeDoc((d: any) => {
d.count = (d.count || 0) + 1
})
}}
>
count is: {doc?.count ?? 0}
</button>
)
}
You should now have a working React application using Automerge. Try running it with yarn dev
, and
open it in two browser windows. You should see the count increment in both windows.
This application is also available as a package in this repo in
automerge-repo-demo-counter. You can run it with yarn dev:demo
.
Adding a sync server
First, get a sync-server running locally, following the instructions for the
automerge-repo-sync-server package.
Next, update your application to synchronize with it:
Install the websocket network adapter:
yarn add automerge-repo-network-websocket
Now import it and add it to your list of network adapters:
import { BrowserWebSocketClientAdapter } from "@automerge/automerge-repo-network-websocket"
const repo = new Repo({
network: [
new BroadcastChannelNetworkAdapter(),
new BrowserWebSocketClientAdapter("ws://localhost:3030"),
],
storage: new IndexedDBStorageAdapter(),
})
And you're finished! You can test that your sync server is opening the same document in two
different browsers (e.g. Chrome and Firefox). (Note that with our current trivial implementation
you'll need to manually copy the rootDocId
value between the browsers.)
Acknowledgements
Originally authored by Peter van Hardenberg.
With gratitude for contributions by:
- Herb Caudill
- Jeremy Rose
- Alex Currie-Clark
- Dylan Mackenzie