Seph (author) also has a reference implementation in Typescript: <a href="https://github.com/josephg/eg-walker-reference">https://github.com/josephg/eg-walker-reference</a><p>I've stated before that I think the main thing holding back collaborative text / sequence CRDTs is integration with a production database.<p>Eg-walker looks interesting because it might lend itself to be integrated into a database because the operations are immutable and only appended. However, to demonstrate the effectiveness of these algorithms library authors (see Yjs, DiamondTypes, etc) build stand-alone data structures (usually specialized search trees) that most databases already provide.<p>Personally, I've been trying to adapt a Piece Table[1] to be collaborative and stored in Triplit[2] which runs on both client and server and already implements logical clocks but I might see how well I can adapt this algorithm instead!<p>1. <a href="https://en.wikipedia.org/wiki/Piece_table" rel="nofollow">https://en.wikipedia.org/wiki/Piece_table</a>
2. <a href="https://github.com/aspen-cloud/triplit">https://github.com/aspen-cloud/triplit</a>