automerge-classic icon indicating copy to clipboard operation
automerge-classic copied to clipboard

A JSON-like data structure (a CRDT) that can be modified concurrently by different users, and merged again automatically.

Results 83 automerge-classic issues
Sort by recently updated
recently updated
newest added

The error `Cannot assign an object that already belongs to an Automerge document` seems to trigger when trying to move an item in an array since the last patch. Here...

This is a follow up on #168. It really would be great to have an option to reduce the size of history. My own use case would be a single...

Quick extension to the Observable API (#308) requested by @echarles: the callback function now receives an additional parameter containing the path from the root object to the object being observed....

This PR provides an implementation of cursors, which allow a particular element of a list, or a particular character in an `Automerge.Text` object, to be referenced from elsewhere in the...

We need a tool to losslessly convert documents in Automerge's current JSON-based format into the new binary format (#253). It will need to do the following: - In the old...

We need a detailed documentation/specification of Automerge's new binary data format (#253), so that others can implement it if they want to. I am thinking an RFC-style document of prose,...

# Benchmarks I've been working on the performance of the Rust automerge implementation and as a result have been thinking about how we want to benchmark ourselves. I want to...

My current understand is that new Automerge provides `Automerge.save(doc)` API that performs maximum compression producing bytes encoding full history of the document which can be shared with collaborators for merging....

In order to support the Ordered Array of Formatting Spans ([OAFS][]) model for Rich Text, it's necessary to maintain a list of references into an Automerge.Text object, along with the...

Hi, I am working on the Jupyter Realtime Collaboration project (https://github.com/jupyterlab/rtc) and one of the requirement is to avoid Node.js as dependency for the user (we set Python only as...