I'm looking for a library that would allow me to synchronize text in real-time between multiple users (ala Google Docs).

I've stumbled upon Operational Transformation, which seems to fit my needs. Having said that, I understand the gist of OT, but not the math nor implementation of OT.

Thus, I was wondering if there was a drag'n'drop Javascript library that would hook into a text area, generate the transforms, then allow me to apply those transformations onto another client?

(I've gotten the Etherpad source, but I can't make head or tails out of it. If anyone could point out how to leverage on Etherpad's OT implementation, that'll be great too!)

link|improve this question

feedback

8 Answers

up vote 13 down vote accepted

I think that parts of Google Wave's OT implementation are Open Source (and more parts are coming).

I'm not sure if this is what you are looking for:

link|improve this answer
Diff-Match-Patch, combined with the Differential Synchronization paper by Neil Frasier (neil.fraser.name/writing/sync) did the trick! Many thanks for pointing me in the right direction. – gamers2000 Jan 14 '10 at 14:11
Does this solution only work for plain text? – Jimmy Mar 6 '11 at 8:42
From what I understand, Diff-Match-Patch, and by extension, MobWrite (since the latter uses the former) only supports text, not binary changes. However, there is a demo of collaboration with HTML form elements, which would indicate it doesn't only support plain text. – gamers2000 Apr 23 '11 at 2:59
Any good news on "and more parts are coming" since this answer ? – Albert Kam Dec 9 '11 at 3:52
1  
Actually, Google-Diff-Match-Patch is aimed to implement the alternative method to Operational Transformations, which is Differential Synchronization, to understand the differences you can read the Neil Fraser document of DS: neil.fraser.name/writing/sync (OT is referenced in this document as Event passing). They are two very different methods. – Benja Feb 6 at 12:59
feedback

One of the ex-Wave engineers has released a Coffeescript implementation of its collaborative editing algorithm called ShareJS.

link|improve this answer
@joseph Looks like you cut-pasted something else instead of the actual hyper-link. – marvindanig Nov 7 '11 at 15:14
feedback

OT Libraries:

Within the HWIOS websocket project, i've succesfully used a combo of both(py-infinote at the serverside, jinfinote at clientside) to sync document states.

link|improve this answer
feedback

You could talk to the guys at Cedanet. Though Ceda is closed source and no free trial is available on their web site. I have been involved in the development of Ceda and continue to work with it in commercial projects, so I might be able to provide some feedback/advice if you head down this path.

link|improve this answer
feedback

Also check out these Javascript Libraries:

link|improve this answer
feedback

I thing etherpad.org with etherpad lite is superior to other solutions.

link|improve this answer
feedback

With a js client lib (Strophe.js) you could use a free XMPP server (like jabber.org) along with my client-side OT lib (JSOTTEST) to build a complete client-server system.

I will submit the src of a demo client-server chat system when I have time to revise the code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.