peritext VS rust-libp2p

Compare peritext vs rust-libp2p 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)

rust-libp2p

The Rust Implementation of the libp2p networking stack. (by libp2p)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
peritext rust-libp2p
20 31
615 4,152
2.6% 2.3%
0.0 9.8
over 1 year ago 2 days ago
TypeScript Rust
MIT License 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.

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.

rust-libp2p

Posts with mentions or reviews of rust-libp2p. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-05.
  • On Implementation of Distributed Protocols
    23 projects | dev.to | 5 Apr 2024
    Substrate and Lighthouse use libp2p as a networking stack for communication between nodes. The libp2p framework is a versatile modular peer-to-peer networking stack. It provides a collections of abstractions, mechanisms, and protocols for facilitating communication in P2P systems. In particular, libp2p supports multiple transport mechanisms (TCP, QUIC, WebSocket, WebTransport, etc.), encryption schemes (TLS and Noise), and stream multiplexing. Higher-level protocols in libp2p are implemented on top of reliable, ordered, bidirectional binary streams, which are transparently encrypted and multiplexed by the framework.
  • Bifrost: A peer-to-peer communications engine with pluggable transports
    4 projects | news.ycombinator.com | 22 Oct 2023
    It's a peer-to-peer "engine" with switchable components. Seems to run on different platforms (browsers, mobile, desktop, server).

    At a glance, it looks pretty much like libp2p (https://libp2p.io/) but seems to integrate with libp2p as well (meaning you should be able to use Bifrost on one end, and libp2p on the other), so I'm guessing there is at least some fundamental difference, but I cannot spot it. Seems to use slightly different terminology compared to libp2p.

  • Libp2p – A Modular Network Stack
    1 project | news.ycombinator.com | 1 Aug 2023
  • [AskJS] Any js browser based p2p libraries?
    3 projects | /r/javascript | 6 May 2023
  • Decentralized Databases: ComposeDB
    2 projects | dev.to | 21 Mar 2023
    ComposeDB is a graph database created by 3BoxLabs, a company well-known in the Web3 ecosystem for their work on decentralized identifiers (DIDs) and their main product the Ceramic network. Ceramic is a network of nodes that store and share composable data streams on top of libp2p, the network stack that also powers IPFS.
  • What about a Zig implementation of lib2p2?
    2 projects | news.ycombinator.com | 22 Feb 2023
    Yes, there is already a Rust version (https://github.com/libp2p/rust-libp2p) that behaves well at this level but I think we can reach a higher level of performance on this point with Zig. Also, if you look at the long term roadmap of libp2p (https://github.com/libp2p/specs/blob/master/ROADMAP.md), the mobile devices and IoT integrations for example are part of the considerations.
  • A Rust client library for interacting with Microsoft Airsim https://github.com/Sollimann/airsim-client
    13 projects | /r/robotics | 22 Jan 2023
    libp2p
  • Social Media on the Decentralized Web
    5 projects | /r/filecoin | 15 Nov 2022
    At Filecoin Foundation, we see the technologies in the Filecoin ecosystem offering rock-steady stepping stones to this better future. Libp2p lets individual users find and talk to each other, without needing central servers. IPFS gives new services a way to find data, wherever it is stored — freeing them from dependence on one social media company over another and letting users move from one service to another. The Filecoin network itself, with incentivized storage, not only provides a provably stable basis for hosting content, but also shines a light on the kind of incentive systems that will enable independent social media to sustain and provide for itself for the long run, without relying on the largesse of the current tech giants.
  • Good sources to learn about IPFS?
    1 project | /r/ipfs | 29 May 2022
    Maybe https://libp2p.io
  • Fula: a new, innovative way to develop decentralized applications
    4 projects | dev.to | 4 May 2022
    So, after rolling my eyes and saying to myself 'not another web3 protocol', I began to understand the need for something new that not only takes advantage of the cutting edge in peer to peer networking but also acknowledges the fact that the client-server architecture is also not going away (which is incredibly important in a world full of low-powered, embedded devices).

What are some alternatives?

When comparing peritext and rust-libp2p 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.

cosmos-sdk - :chains: A Framework for Building High Value Public Blockchains :sparkles:

y-crdt - Rust port of Yjs

go-livepeer - Official Go implementation of the Livepeer protocol

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

threlte - 3D framework for Svelte

freenet-core - Declare your digital independence

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

consensus-specs - Ethereum Proof-of-Stake Consensus Specifications

yjs - Shared data types for building collaborative software

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