Reimagine state management with CRDTs. Make your app collaborative effortlessly.
Find a file
2023-12-05 11:57:58 +08:00
.devcontainer chore: add dev container 2022-11-18 00:48:18 +08:00
.github/workflows feat: support richtext in wasm & mark text with arbitrary value (#142) 2023-11-02 14:20:34 +08:00
.vscode Feat: diff calc bring back & tree new event and value (#149) 2023-11-05 15:53:33 +08:00
crates fix: [LORO-337] Marking should have no effect when the target key value pair exists #204 (#209) 2023-12-05 11:57:58 +08:00
docs docs: add comment for last&end 2023-02-09 16:30:22 +08:00
examples/loro-quill docs: update env setup info 2023-11-15 21:07:00 +08:00
loro-js Refactor: use ValueOrContainer for diff event (#202) 2023-12-05 11:57:41 +08:00
scripts chore: dev container config 2022-11-18 00:31:11 +08:00
supply-chain chore: update crdt-list dep 2022-10-26 23:35:21 +08:00
.editorconfig feat: rle 2022-07-13 00:47:41 +08:00
.gitignore Feat: Peritext-like rich text support (#123) 2023-10-29 14:02:13 +08:00
Cargo.lock perf(wasm): reduce wasm size (#198) 2023-11-29 13:59:39 +08:00
Cargo.toml Perf: speed up utf16 and wasm (#90) 2023-04-03 09:29:25 +08:00
deno.jsonc docs: add docs to rust api 2023-11-28 22:17:40 +08:00
deno.lock test: add more examples 2023-11-10 20:13:01 +08:00
deny.toml chore: add cargo deny config 2022-07-17 16:33:16 +08:00
LICENSE Create LICENSE 2023-11-12 23:11:25 +08:00
package.json chore: make root pkg private 2023-11-12 21:11:54 +08:00
pnpm-lock.yaml Doc: loro-crdt documents in comments (#165) 2023-11-10 20:30:54 +08:00
pnpm-workspace.yaml Add richtext example using Quill (#145) 2023-11-03 16:59:27 +08:00
README.md chore: wasm-snip init 2023-11-29 15:07:39 +08:00
rust-toolchain chore: use stable rust as GAT become stable 2022-11-06 23:18:15 +08:00

Loro

Reimagine state management with CRDTs 🦜
Make your app state synchronized and collaborative effortlessly.

Rich text example

⚠️ Notice: The current API and encoding schema of Loro are experimental and subject to change. You should not use it in production.

Loro is a CRDTs(Conflict-free Replicated Data Types) library that makes building local-first apps easier.

Explore our vision for the local-first development paradigm in our blog post: Reimagine State Management with CRDTs.

Features

Supported CRDT Algorithms

  • Common Data Structures: Support for List for ordered collections, LWW(Last Write Win) Map for key-value pairs, Tree for hierarchical data, and Text for rich text manipulation, enabling various applications.
  • Text Editing with Fugue: Loro integrates Fugue, a CRDT algorithm designed to minimize interleaving anomalies in concurrent text editing.
  • Peritext-like Rich Text CRDT: Drawing inspiration from Peritext, Loro manages rich text CRDTs that excel at merging concurrent rich text style edits, maintaining the original intent of users input as much as possible. Details on this will be explored further in an upcoming blog post.
  • Moveable Tree: For applications requiring directory-like data manipulation, Loro utilizes the algorithm from A Highly-Available Move Operation for Replicated Trees, which simplifies the process of moving hierarchical data structures.

Advanced Features in Loro

  • Preserve Editing History
    • With Loro, you can track changes effortlessly as it records the editing history with low overhead.
    • This feature is essential for audit trails, undo/redo functionality, and understanding the evolution of your data over time.
  • Time Travel Through History
    • It allows users to compare and merge manually when needed, although CRDTs typically resolve conflicts well.
  • High Performance

Build time travel feature easily for large documents.

https://github.com/loro-dev/loro/assets/18425020/ec2d20a3-3d8c-4483-a601-b200243c9792

Features Provided by CRDTs

  • Decentralized Synchronization: Loro allows your app's state synced via p2p connections.
  • Automatic Merging: CRDTs guarantee strong eventual consistency by automating the merging of concurrent changes.
  • Local Availability: Data can be persisted on users' devices, supporting offline functionality and real-time responsiveness.
  • Scalability: Effortlessly scale your application horizontally thanks to the inherently distributed nature of CRDTs.
  • Delta Updates

Development

Development Environment Setup

  1. Rust: Install from the official Rust website.
  2. Deno: Download and install from Deno's website.
  3. Node: Install from the Node.js website.
  4. pnpm: Run npm i -g pnpm for global installation.
  5. Rust Target: Add with rustup target add wasm32-unknown-unknown.
  6. wasm-bindgen-cli: Install version 0.2.86 via cargo install wasm-bindgen-cli --version 0.2.86.
  7. wasm-opt: Install using cargo install wasm-opt --locked.
  8. wasm-snip: Install using cargo install wasm-snip.
  9. cargo-nextest: Install using cargo install cargo-nextest --locked.
  10. cargo-fuzz: Run cargo install cargo-fuzz.

Test

deno task test

# Build and test WASM
deno task test-wasm

Credits

Loro draws inspiration from the innovative work of the following projects and individuals:

  • Ink & Switch: The principles of Local-first Software have greatly influenced this project. The Peritext project has also shaped our approach to rich text CRDTs.
  • Diamond-types: The ingenious OT-like merging algorithm from @josephg has been adapted to reduce the computation and space usage of CRDTs.
  • Automerge: Their use of columnar encoding for CRDTs has informed our strategies for efficient data encoding.
  • Yjs: We have incorporated a similar algorithm for effectively merging collaborative editing operations, thanks to their pioneering contributions.
  • Matthew Weidner: His work on the Fugue algorithm has been invaluable, enhancing our text editing capabilities.