It’s also compatible with Yjs and includes experimental support for end-to-end encrypted LoroDoc synchronization.
Learn more here: loro.dev/blog/loro-pr...
GitHub: github.com/loro-dev/pro...
It’s also compatible with Yjs and includes experimental support for end-to-end encrypted LoroDoc synchronization.
Learn more here: loro.dev/blog/loro-pr...
GitHub: github.com/loro-dev/pro...
The Loro Protocol repo is now open source!
It contains documentation for the wire protocol, along with TypeScript and Rust implementations of WebSocket clients and servers.
The protocol allows reusing a single connection to join multiple CRDT rooms, such as Loro documents or the Ephemeral Store.
Loro Inspector is here! Now you can directly browse the current state and complete edit history of your Loro documents in the browser. You can also use this tool to time travel to any version in the history of your Loro document.
New version control primitives have been added to Loro:
- diff(from, to): calculate the differences between any two versions
- revertTo(version): Generate ops to revert to the target version
- applyDiff(diff): Apply differences
You can use them to implement functions like git squash and revert.
The slides for the talk are available here: loro-slidev.vercel.app
🙌
Container Overwrites When initializing child containers in parallel, overwrites can occur instead of automatic merging. For example: const doc = new LoroDoc(); const map = doc.getMap("map"); // Parallel initialization of child containers const docB = doc.fork(); const textA = doc.getMap("map").setContainer("text", new LoroText()); textA.insert(0, "A"); const textB = docB.getMap("map").setContainer("text", new LoroText()); textB.insert(0, "B"); doc.import(docB.export({ mode: "update" })); // Result: Either { "meta": { "text": "A" } } or { "meta": { "text": "B" } } This behavior can lead to serious data loss issues. If a container holds significant data or even the entire document's content, overwriting it could result in unexpected loss of important information. While the complete editing history is preserved and allows for potential recovery of user data, the recovery process can be complex.
You may experience data loss due to the following issues caused by incorrect usage of CRDTs libraries, regardless of whether you're using Loro, Automerge, or Yjs. Here is how to avoid them:
🦋
Loro 1.0 is here!
Introducing stable binary document format, blazing-fast import speed, Git-like shallow clone, enhanced version control, and more.
loro.dev/blog/v1.0