y-crdt VS peritext

Compare y-crdt vs peritext and see what are their differences.

peritext

A CRDT for asynchronous rich-text collaboration, where authors can work independently and then merge their changes. (by inkandswitch)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
y-crdt peritext
16 20
1,316 615
5.3% 2.6%
9.1 0.0
about 17 hours ago over 1 year ago
Rust TypeScript
GNU General Public License v3.0 or later MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

y-crdt

Posts with mentions or reviews of y-crdt. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-16.
  • Show HN: Modyfi – a multiplayer design platform built in Rust and wgpu
    1 project | news.ycombinator.com | 17 Jan 2024
    Definitely agree that would be valuable. In fact our multiplayer state synchronization aspect is largely implemented in TypeScript (there's a TS element to the stack as well), and is built on top of YJS – there is a Rust implementation of YJS already though, which would likely be a great start for anyone looking to build something similar purely in Rust: https://github.com/y-crdt/y-crdt

    We are working on a plugin API, which will allow people to build functionality that leverages the multiplayer data model – but within the app rather than as standalone applications.

  • Synchronizing local state with the database
    1 project | /r/rust | 27 Jun 2023
    It sounds like you want a Conflict-Free Replicated Data Type, CRDT for short. There are some Rust libraries you can use, but y-crdt seems very feature-complete, a port of Yjs.
  • Show HN: I made an open-source Notion-style WYSYWIG editor
    10 projects | news.ycombinator.com | 16 Jun 2023
    I've found reliably persistence on the backend irritating with yjs. Seems like the official path is to fork their example library and edit it. (The example is insufficient because, for example, it will silently eat data if the onchange webhook fails).

    yrs initially looks tempting but it's unsound at it's core. (The plan is to port the API directly from JS, use unsafe to silence the borrow checker, then gradually fix specific instances of undefined behavior if they cause actual real world issues.[1] I don't this this is an approach that can work. That's a shame because a lot of impressive work has gone into yrs.)

    [1]: https://github.com/y-crdt/y-crdt/issues/233

  • Automerge 2.0
    11 projects | news.ycombinator.com | 30 Jan 2023
    So exciting! Strangely enough, a couple of hours before this release, we just managed to wrap our heads around Yjs after playing with it on and off for a few weeks!

    For anyone not up to date with the world of CRDTs, Seph Gentle's two blog posts have become legendary:

    * https://josephg.com/blog/crdts-are-the-future/

    * https://josephg.com/blog/crdts-go-brrr/

    these are also worth checking out:

    * https://github.com/y-crdt/y-crdt (rust implementation started by the creator of Yjs, Kevin Jahns)

    * https://github.com/y-crdt/ypy (python bindings for the rust implementation)

    * https://github.com/josephg/diamond-types (Seph Gentle's rust implementation of YATA, the algorith behind Yjs)

  • Autosurgeon 0.3.0, use conflict-free replicated data types (CRDTs) to build offline-first apps with an easy-to-use API based on Automerge
    4 projects | /r/rust | 30 Jan 2023
    I found the concept of conflict-free relational data types (CRDTS) interesting as it allows you to have fully offline experiences while also having a conflict-free syncing experience. I was looking for some good libraries and came across automerge and yrs, but both had some rough APIs as they're primarily low-level libraries that are wrapped by TypeScript APIs.
  • Show HN: Pg_CRDT – an experimental CRDT extension for Postgres
    4 projects | news.ycombinator.com | 10 Dec 2022
    Yrs (Yjs on Rust) maintainer here: we actually had some idea about building extension to Postgres ;) See: https://github.com/y-crdt/y-crdt/issues/220
  • Rust JavaScript Interoperability? Or can I use OrbitDB from Rust?
    3 projects | /r/rust | 16 May 2022
  • I was wrong. CRDTs are the future
    4 projects | news.ycombinator.com | 16 Apr 2022
    Hi everyone! Author here. I'm happy to answer questions.

    I wrote this a couple years ago. Since then I've been working on my own CRDT called Diamond Types[1], which uses a lot of these ideas to be bonkers fast. I've built several OT based collaborative editing systems, and diamond types is much faster than any of them - though rust and wasm might be the real MVPs here. I wrote a follow-up to this article last year when I got that working, talking about how some of the optimizations work. That article is here[2].

    A fair bit has changed since I wrote that article. Yjs has started a rewrite in rust (called yrs[3]). And Automerge has apparently dramatically improved performance based on some of the ideas I talk about in this article. Oh, and diamond types has been rewritten from the ground up. Its now about 5x faster than it was last year, by completely changing the internal structure. But thats a story for another day.

    Unfortunately I still only support collaborative text editing. Adding full JSON support comes soon, after I document some more of the tricks I'm doing. Its really fun work!

    Why do I only support collaborative text editing? Because I care about performance, and text CRDT performance is hard because you have so many individual changes. (One for each keystroke!). Making text editing fast means everything is fast. But we've still got to do the work. To make that happen, my plan is to add full JSON editing support to diamond types using shelf[4]. Shelf is a super simple CRDT which fits in 100 lines of javascript.

    [1] https://github.com/josephg/diamond-types/

    [2] https://josephg.com/blog/crdts-go-brrr/

    [3] https://github.com/y-crdt/y-crdt/tree/main/yrs

    [4] https://github.com/dglittle/shelf

  • Automerge: A JSON-like data structure (a CRDT) that can be modified concurrently
    12 projects | news.ycombinator.com | 20 Feb 2022
  • Show HN: Matrix-CRDT – real-time collaborative apps using Matrix as backend
    8 projects | news.ycombinator.com | 18 Jan 2022

peritext

Posts with mentions or reviews of peritext. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-03.
  • Cola: A text CRDT for real-time collaborative editing
    2 projects | news.ycombinator.com | 3 Sep 2023
    This doesn’t appear to support rich text formatting ranges like bold, italic, etc - unless I’m missing something in the API. AFAIK Peritext is still the state of the art in rich text CRDT algorithms https://www.inkandswitch.com/peritext/

    I’d love to see this build the rich text stuff from the Peritext algorithm.

  • The Cloud Is a Prison. Can the Local-First Software Movement Set Us Free?
    1 project | news.ycombinator.com | 3 Aug 2023
    The work Ink & Switch (unaffiliated) do has been an inspiration to my with regard to local-first and decentralized software: https://www.inkandswitch.com

    They have a quasi-manifesto on local-first (https://www.inkandswitch.com/local-first/) and have published the best rich text CRDT around, Peritext: https://www.inkandswitch.com/peritext/

    Lots of interesting work happening in this space.

  • Figma Is a File Editor
    3 projects | news.ycombinator.com | 13 Jul 2023
    Take a look at https://automerge.org/ and the stack those folks are building. You're exactly right that it's a difficult balance (specifically the trick is proving commutativity for the domain-specific data of your application). But automerge (and then https://github.com/inkandswitch/peritext) show it's at least possible. Good stuff.
  • Ask HN: What is new in Algorithms / Data Structures these days?
    15 projects | news.ycombinator.com | 10 May 2023
    Yes - The BFT problem only matters when you have Byzantine actors. But I think users deserve and expect the system to be reasonably well behaved and predictable in all situations. Anything publically writable, for example, needs BFT resilience. Or any video game.

    As for the prosemirror problem, I assume you’re talking about weird merges from users putting markdown in a text crdt? You’re totally right - this is a problem. Text CRDTs treat documents as a simple sequence of characters. And that confuses a lot of structured formats. For example, if two users concurrently bold the same word, the system should see that users agree that it should be bolded. But if that “bold” intent is translated into “insert double asterisks here and here”, you end up with 4 asterisks before and after the text, and that confused markdown parsers. The problem is that a text crdt doesn’t understand markdown.

    JSON editing has similar problems. I’ve heard of plenty of people over the years putting json text into a text crdt, only to find that when concurrent edits happen, the json grows parse errors. Eg if two users concurrently insert “a” and “b” into an empty list. The result is [“a””b”] which can’t be parsed.

    The answer to both of these problems is to use CRDTs which understand the shape of your data structure. Eg, use a json OT/crdt system for json data (like sharedb or automerge). Likewise, if the user is editing rich text in prosemirror then you want a rich text crdt like peritext. Rich text CRDTs add the concept of annotations - so if two users bold overlapping regions of text, the crdt understands that the result should be that the entire region is bolded. And that can be translated back to markdown if you want.

    The ink & switch people did a great write up of how this sort of crdt works here: https://www.inkandswitch.com/peritext/

  • Edge cases in collaborative rich text editing (2021)
    1 project | news.ycombinator.com | 21 Apr 2023
  • You might not need a CRDT
    9 projects | news.ycombinator.com | 5 Dec 2022
    > I'm looking out for practical CRDT ideas that works well with richtext.

    Have you seen Peritext from Ink & Switch? https://www.inkandswitch.com/peritext/ It's relatively new, but is a CRDT aimed at rich text!

  • CRDTs make multiplayer text editing part of Zed's DNA
    10 projects | news.ycombinator.com | 1 Dec 2022
    To put it in a different perspective, plain text editing has well-solved CRDT patterns. But, semantic data-structures like rich-text or syntax trees is what's tricky and has unsolved challenges.

    Peritext[1] is the only one that came close to solving rich-text, but even that one left out important aspect of rich-text editing like handling list & table operations as "work to be done later".

    For people interested on why it's difficult to build CRDTs for richtext, here's a piece I wrote a year back: https://writer.zohopublic.com/writer/published/grcwy5c699d67...

    Related HN discussion: https://news.ycombinator.com/item?id=29433896

    [1] https://github.com/inkandswitch/peritext

  • Peritext – A CRDT for Rich-Text Collaboration
    1 project | news.ycombinator.com | 27 Nov 2022
  • Evan Wallace CRDT Algorithms
    5 projects | news.ycombinator.com | 27 Nov 2022
    Anyone unsure of what a CRDT is, this is the perfect intro: https://www.inkandswitch.com/peritext/

    The two most widely used CRDT implementations (combining JSON like general purpose types and rich text editing types) are:

    - Automerge https://github.com/automerge/automerge

    - Yjs https://github.com/yjs/yjs

  • Is Svelte capable of a Google Docs & Sheets clone?
    3 projects | /r/sveltejs | 21 Nov 2022
    Svelte is, but that is your smallest problem. You want to look into CRDTs (conflict-free replicated data types) to offer true (offline) collaboration. A popular JS library to solve this complex problem is called [automerge](Conflict-free replicated data type). A rather recent development in that area specifically for text-based content is Peritext. Also check out this interactive tutorial about CRDTs.

What are some alternatives?

When comparing y-crdt and peritext you can also consider the following projects:

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

slate-yjs - Yjs binding for Slate

dokieli - :bulb: dokieli is a clientside editor for decentralised article publishing, annotations and social interactions

rust-libp2p - The Rust Implementation of the libp2p networking stack.

threlte - 3D framework for Svelte

diamond-types - The world's fastest CRDT. WIP.

automerge-rs - Rust implementation of automerge [Moved to: https://github.com/automerge/automerge]

rust-crdt - a collection of well-tested, serializable CRDTs for Rust

yjs - Shared data types for building collaborative software

Matrix-CRDT - Use Matrix as a backend for local-first applications with the Matrix-CRDT Yjs provider.