TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Open source collaborative text editors

628 点作者 juretriglav大约 6 年前

43 条评论

jahfer大约 6 年前
A number of years back, I wrote an OT implementation in Clojure&#x2F;ClojureScript as a hobby project [1] and learned a lot along the way. I even extracting out the core client&#x2F;server implementations to their own package [2].<p>It&#x27;s an incredibly fun topic, and one that&#x27;s also really challenging. It also gave me first-hand experience with fuzz-testing where I could simulate all kinds of concurrent-edit conflicts and ensure both clients came out with the same end-result. While the end client&#x2F;server implementations are working, it was a lot more effort than I anticipated building a full-fledged editor on top. I was too stubborn at the time to attempt to integrate with existing RTEs though, so the most notable part of the project was the core lib, not the end product.<p>For those interested in implementing it for themselves, I can&#x27;t recommend this piece [3] by @djspiewak enough.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;jahfer&#x2F;ot" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jahfer&#x2F;ot</a> [2] <a href="https:&#x2F;&#x2F;github.com&#x2F;jahfer&#x2F;othello" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jahfer&#x2F;othello</a> [3] <a href="http:&#x2F;&#x2F;www.codecommit.com&#x2F;blog&#x2F;java&#x2F;understanding-and-applying-operational-transformation" rel="nofollow">http:&#x2F;&#x2F;www.codecommit.com&#x2F;blog&#x2F;java&#x2F;understanding-and-applyi...</a>
评论 #19850900 未加载
AnthonBerg大约 6 年前
I found this recent paper highly enlightening: <i>“Real Differences between OT and CRDT for Co-Editors”</i>– Chengzheng Sun, David Sun, Agustina, Weiwei Cai, October 2018.<p>Arxiv meta: <a href="https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;1810.02137" rel="nofollow">https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;1810.02137</a><p>PDF: <a href="https:&#x2F;&#x2F;arxiv.org&#x2F;pdf&#x2F;1810.02137.pdf" rel="nofollow">https:&#x2F;&#x2F;arxiv.org&#x2F;pdf&#x2F;1810.02137.pdf</a><p>It’s well written imo. The conclusions chapter is very good.<p>“In this work, we have critically reviewed and evaluated representative OT and CRDT solutions, with respect to correctness, time and space complexity, simplicity, applicability in real world co- editors, and suitability in peer-to-peer co-editing. The evidences and evaluation results from this work disprove superiority claims made by CRDT over OT on all accounts.”<p>And it is also argued that OT is a more direct approach to the fundamental issues of realtime multiuser editing, and that that directness brings effectiveness.<p>HN discussion: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=18191867" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=18191867</a>
评论 #19901408 未加载
评论 #19848109 未加载
评论 #19848707 未加载
评论 #19847813 未加载
houshuang大约 6 年前
Surprised the author didn&#x27;t mention Quill.js, which works really well with ShareDB, and is fully open source. We&#x27;ve been doing a lot of fun stuff with it - here&#x27;s a talk I gave recently as a job talk: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=gN37rJRmISQ" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=gN37rJRmISQ</a>. (It worked, I got hired :)). As a side project, I&#x27;m working on a ShareDB backed wiki, where we can use rich text for editing pages, but also other components, like spreadsheets or mindmaps, and everything supports live editing - I think it would be amazing for classrooms, hackathons, any kind of meeting etc. Would love to talk with anyone interested in collaborating. I have been waiting for a few features to complete to make a proper demo video, but this early one shows off some of the ideas: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=9-lU-in3ydc" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=9-lU-in3ydc</a> (<a href="https:&#x2F;&#x2F;github.com&#x2F;chili-epfl&#x2F;FROG" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;chili-epfl&#x2F;FROG</a>)
评论 #19851000 未加载
评论 #19901474 未加载
评论 #19848090 未加载
arendtio大约 6 年前
What many people not fully grasp, at first sight, is that offline support for a collaborative editor is at least an order of magnitude more complex than just building a collaborative editor. In online collaborative environments, solving conflicts is relatively simple, as the changes are supposed to be small. But when two (or more) people are working on the same document without synching it for hours or days, the merge strategy has to be extremely good to come up with anything remotely intended (assuming the authors had a common intention).<p>So just because your favorite editor can be used offline and it has an (online) collaboration feature, does not mean it is capable of being an offline-capable collaborative editor.
评论 #19848040 未加载
评论 #19848088 未加载
评论 #19848574 未加载
alalonde大约 6 年前
Indeed, the space is growing quickly. I run a company that provides a backend for real-time collaboration, so we necessarily stay on top of what&#x27;s out there. There&#x27;s a reason the server-side tech tends be paid: it is extraordinarily difficult to provide guaranteed eventual consistency of data at low latency. The CKEditor guys (and us, for that matter) have put YEARS of development effort into their solutions.<p>We&#x27;re working on both offline mode and a generic rich-text data model with support for the major editors.<p>If anyone&#x27;s interested, I&#x27;d happily do some Q and A here.
评论 #19846746 未加载
评论 #19847064 未加载
评论 #19847242 未加载
评论 #19847626 未加载
评论 #19847181 未加载
Iv大约 6 年前
I love your description of &quot;the dive&quot;. I am happy to see I am not the only one experiencing these recurring devouring interests that bring me much much deeper than I would like to go until I am starting to fork a github repo at 2am wondering &quot;what the hell am I doing?&quot;<p>And that article is tangentially related to a recurring interest of mine (shared editable 3d universe in which you can code collaboratively). If you happened to have an article comparing the merit of several server architectures&#x2F;algorithms for collaborative text edition, I think many things can be related. I am now reading about CRDT (What the hell am I doing?) and that&#x27;s something I may use to edit a scene graph collaboratively!
评论 #19846212 未加载
评论 #19847137 未加载
im_down_w_otp大约 6 年前
I would be very appreciative if Google made a stripped down version of Google Docs for plaintext editing.<p>There are a bunch of basic integration features that would also be fantastic, but if the product was literally just Google Docs, minus the WYSIWYG bits, and all plaintext w&#x2F; maybe some syntax highlighting thrown in, I&#x27;d be super happy.
评论 #19847099 未加载
评论 #19847652 未加载
评论 #19847173 未加载
评论 #19846673 未加载
评论 #19847691 未加载
评论 #19847995 未加载
评论 #19848200 未加载
评论 #19850791 未加载
jimpick大约 6 年前
A few other CRDT &#x2F; collaborative text editor links I&#x27;ve collected:<p>* <a href="https:&#x2F;&#x2F;blog.datproject.org&#x2F;2019&#x2F;03&#x2F;05&#x2F;caracara-react-dat-automerge&#x2F;" rel="nofollow">https:&#x2F;&#x2F;blog.datproject.org&#x2F;2019&#x2F;03&#x2F;05&#x2F;caracara-react-dat-au...</a><p>* <a href="https:&#x2F;&#x2F;conclave-team.github.io&#x2F;conclave-site&#x2F;" rel="nofollow">https:&#x2F;&#x2F;conclave-team.github.io&#x2F;conclave-site&#x2F;</a><p>* <a href="https:&#x2F;&#x2F;github.com&#x2F;noffle&#x2F;hyperpad" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;noffle&#x2F;hyperpad</a><p>* <a href="https:&#x2F;&#x2F;xi-editor.io&#x2F;xi-editor&#x2F;docs&#x2F;crdt.html" rel="nofollow">https:&#x2F;&#x2F;xi-editor.io&#x2F;xi-editor&#x2F;docs&#x2F;crdt.html</a><p>* <a href="https:&#x2F;&#x2F;github.com&#x2F;atom&#x2F;teletype-crdt" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;atom&#x2F;teletype-crdt</a><p>* <a href="https:&#x2F;&#x2F;github.com&#x2F;atom&#x2F;xray" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;atom&#x2F;xray</a><p>* <a href="https:&#x2F;&#x2F;github.com&#x2F;MicrosoftDocs&#x2F;live-share" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;MicrosoftDocs&#x2F;live-share</a>
评论 #19853903 未加载
评论 #19887293 未加载
alceta大约 6 年前
We went with CKEditor5 with a commonmark backend and I cannot recommend it more highly. commonmark data is converted upon initially opening and when closing the editor, allowing all native functionality to happen efficiently.<p>However I do note that we do not yet have a production ready backend for collaborative editing. I would suggest to use their service if possible, since we&#x27;re developing an open source product it would not be an option for us.<p>There is a quite leaning curve when implementing new plugins due to the strict separation of model and data (commonmark in our case) and user-facing views.
评论 #19846357 未加载
hyperion2010大约 6 年前
All I want is org mode backed by a crdt or similar so I don&#x27;t have to convert in and out every time I need to collaborate with someone.
mochidusk大约 6 年前
I was able to get real-time collaborative text editing to work on one of my side projects by combining quill.js[1], ot.js[2], and firebase[3]. This was a few years ago when there weren&#x27;t any fully open-source options. I&#x27;m in the process of switching out firebase for an elixir&#x2F;phoenix backend[4]. I&#x27;m really glad for this article because it captures the exact feelings that I have.<p>[1] <a href="https:&#x2F;&#x2F;quilljs.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;quilljs.com&#x2F;</a> [2] <a href="https:&#x2F;&#x2F;github.com&#x2F;Operational-Transformation&#x2F;ot.js&#x2F;" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Operational-Transformation&#x2F;ot.js&#x2F;</a> [3] <a href="https:&#x2F;&#x2F;firebase.google.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;firebase.google.com&#x2F;</a> [4] <a href="https:&#x2F;&#x2F;github.com&#x2F;phoenixframework&#x2F;phoenix" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;phoenixframework&#x2F;phoenix</a>
评论 #19846811 未加载
评论 #19847663 未加载
jsilence大约 6 年前
What about Cryptpad? <a href="https:&#x2F;&#x2F;cryptpad.fr&#x2F;" rel="nofollow">https:&#x2F;&#x2F;cryptpad.fr&#x2F;</a>
评论 #19846741 未加载
评论 #19851619 未加载
threespice大约 6 年前
This was one of the project idea I made myself work on during this April. The motivation being, &quot;how hard is it to make a real-time code editor&quot;. Long story short, it is far more complicated than I had imagine and to complete in less than a week. Implementing the CRDT itself, the logic itself is challenging and than putting it down to code is another story.<p>From my understanding, an implementation of logoot[1] is built to create the skeleton of a collaborative environment. From there on, you have the building block to make other things work with it, such as collaborative canvas.<p>I built one using Socket.io on Angular and used Ace Editor own implementation of CRDT<p>&gt; <a href="https:&#x2F;&#x2F;github.com&#x2F;abdusamed91&#x2F;realtime-codeeditor" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;abdusamed91&#x2F;realtime-codeeditor</a><p>I used the following references to build it<p>1) <a href="https:&#x2F;&#x2F;alligator.io&#x2F;angular&#x2F;socket-io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;alligator.io&#x2F;angular&#x2F;socket-io&#x2F;</a><p>2) <a href="https:&#x2F;&#x2F;medium.com&#x2F;@ofir3322&#x2F;create-an-online-ide-with-angular-6-nodejs-part-1-163a939a7929" rel="nofollow">https:&#x2F;&#x2F;medium.com&#x2F;@ofir3322&#x2F;create-an-online-ide-with-angul...</a><p>To get started with the theory CRDT low level algorithm, these two post go into great details<p>1) <a href="https:&#x2F;&#x2F;conclave-team.github.io&#x2F;conclave-site&#x2F;" rel="nofollow">https:&#x2F;&#x2F;conclave-team.github.io&#x2F;conclave-site&#x2F;</a><p>2) <a href="http:&#x2F;&#x2F;digitalfreepen.com&#x2F;2017&#x2F;10&#x2F;06&#x2F;simple-real-time-" rel="nofollow">http:&#x2F;&#x2F;digitalfreepen.com&#x2F;2017&#x2F;10&#x2F;06&#x2F;simple-real-time-</a> collaborative-text-editor.html<p>[1]<a href="https:&#x2F;&#x2F;hal.inria.fr&#x2F;inria-00432368&#x2F;document" rel="nofollow">https:&#x2F;&#x2F;hal.inria.fr&#x2F;inria-00432368&#x2F;document</a><p>I&#x27;d love to take it to another level if anyone here has mutual interest in this field of work.
qpiox大约 6 年前
I wonder why would one make a headline &quot;Open source collaborative text editors&quot;, and then write about online editors which are neither fully open-sourced, nor fully collaborative. And then stop with them, without even mentioning solutions that are both truly real-time collaborative and truly open source.
评论 #19850953 未加载
评论 #19850542 未加载
johanneswilm大约 6 年前
You should try <a href="https:&#x2F;&#x2F;www.fiduswriter.org" rel="nofollow">https:&#x2F;&#x2F;www.fiduswriter.org</a>. It does have realtime collaboration, export to ODT&#x2F;DOCX&#x2F;Epub&#x2F;LaTeX, tracked changes, WYSIWYG interface, etc. and in the latest version even a document template editor. I think relatively speaking it&#x27;s quite developed in comparison to some of the other word processors presented here. It does include both frontend and backend parts to make collaboration work. (I did a lot of the programming over the past 7 years.)
amplecooz大约 6 年前
This article from the NYT tech blog is a really good read on how they created a custom text editor for the newsroom: <a href="https:&#x2F;&#x2F;open.nytimes.com&#x2F;building-a-text-editor-for-a-digital-first-newsroom-f1cb8367fc21" rel="nofollow">https:&#x2F;&#x2F;open.nytimes.com&#x2F;building-a-text-editor-for-a-digita...</a><p>They built their custom app with the open source ProseMirror (<a href="http:&#x2F;&#x2F;prosemirror.net&#x2F;" rel="nofollow">http:&#x2F;&#x2F;prosemirror.net&#x2F;</a>) toolkit.
nullc大约 6 年前
Emacs can connect to multiple screens.
评论 #19848532 未加载
评论 #19846591 未加载
评论 #19847183 未加载
willvarfar大约 6 年前
So, lots of open-source UIs that use closed-source servers for collaborative editing?<p>This figures. This is one of the ways &#x27;open source&#x27; companies can make money.<p>So, the author sets about making an open-source collaboration server that inter-operates with the existing open-source editor?<p>Kudos!<p>But now the company can retaliate by adding features or inconsistencies to the closed source server and its integration into the UI, making the open-source server forever out-of-date and playing catch-up.<p>Ouch.
mpweiher大约 6 年前
Another one missing: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;SubEthaEdit" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;SubEthaEdit</a><p><i>SubEthaEdit is a collaborative real-time editor designed for Mac OS X. The name comes from the Sub-Etha communication network in The Hitchhiker&#x27;s Guide to the Galaxy series.</i><p>From 2003.
评论 #19848542 未加载
ilaksh大约 6 年前
Etherpad (etherpad lite) has plugins for formatting <a href="https:&#x2F;&#x2F;static.etherpad.org&#x2F;plugins.html" rel="nofollow">https:&#x2F;&#x2F;static.etherpad.org&#x2F;plugins.html</a><p>You can try a lot of them out in the demo online <a href="https:&#x2F;&#x2F;etherpad.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;etherpad.org&#x2F;</a>
johnisgood大约 6 年前
<a href="https:&#x2F;&#x2F;gobby.github.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;gobby.github.io&#x2F;</a> ?<p>Not web-based though.
评论 #19850524 未加载
houshuang大约 6 年前
One neat thing about live collaboration is that every single edit is stored. This enables some nice things, like seamless replay of the entire document editing history. We&#x27;ve been working for a while on trying to analyze edit histories, to see if we could predict which stage of editing a document is in, which writing strategy users use, how a small team is collaborating etc. (Main purpose is to support teachers using this with student groups). We have some code here that works with Etherpad and ShareDB (<a href="https:&#x2F;&#x2F;github.com&#x2F;chili-epfl&#x2F;FROG-analytics" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;chili-epfl&#x2F;FROG-analytics</a>), and happy to share preprints with anyone interested.
评论 #19855187 未加载
评论 #19851076 未加载
LukeB42大约 6 年前
<a href="https:&#x2F;&#x2F;github.com&#x2F;psybernetics&#x2F;synchrony" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;psybernetics&#x2F;synchrony</a> does realtime collaborative WYSIWYG hyperdocument editing.<p>Imagine if Google Wave had a friends list similar to Telegram and each peer acted as a public cache for dead hypermedia.
idleherb0大约 6 年前
I’m new to the topic from a technical point of view. I was wondering if the conflict resolving issues are fundamentally different from online gaming scenarios. I.e., could the ways problems are solved in multiplayer games also be applied to collaborative editors and vice versa?
评论 #19851916 未加载
评论 #19847644 未加载
评论 #19847650 未加载
评论 #19847477 未加载
_fbpt大约 6 年前
HackMD is a decent online Markdown editor.
jimpick大约 6 年前
Another one for the list:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;ipfs-shipyard&#x2F;peer-pad" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ipfs-shipyard&#x2F;peer-pad</a><p>Demo here:<p><a href="http:&#x2F;&#x2F;dev.peerpad.net&#x2F;" rel="nofollow">http:&#x2F;&#x2F;dev.peerpad.net&#x2F;</a><p>(this version will launch soon as soon as we complete the “pinning” &#x2F; backup link to ipfs-cluster and make some UI tweaks)<p>Built with:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;peer-base&#x2F;peer-base" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;peer-base&#x2F;peer-base</a>
petercooper大约 6 年前
Since it didn&#x27;t make the list, nor has been mentioned in this thread, I want to recommend <a href="https:&#x2F;&#x2F;firepad.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;firepad.io&#x2F;</a> - we use it quite heavily at our company. It&#x27;s uses Firebase behind the scenes so is essentially &#x27;serverless&#x27; and we use it for editing our e-mail newsletters live as a team. It literally takes minutes to throw into an app.
评论 #19848933 未加载
usermac大约 6 年前
Until last year and for two years I kept an Etherpad Lite to do shared text editing and it was amazing. It was in use for three years. The only reason I stopped using it was Google Docs, who bought the company or IP for Etherpad, can do the same thing and therefore I don&#x27;t have to do the Linux maintenance. I even had it use SQlite as the database and it could handle as many as 30 simultaneous users without a hitch.
评论 #19849885 未加载
kemayo大约 6 年前
Mediawiki&#x27;s visual editor has a (unreleased) collaborative mode: <a href="https:&#x2F;&#x2F;www.mediawiki.org&#x2F;wiki&#x2F;VisualEditor&#x2F;Real-time_collaboration" rel="nofollow">https:&#x2F;&#x2F;www.mediawiki.org&#x2F;wiki&#x2F;VisualEditor&#x2F;Real-time_collab...</a><p>Hits all those open-source client and server notes, and has the advantage of supporting everything that mediawiki does.
havlenao大约 6 年前
We (at brainioapp.com) are right now working on collaborative mind map app that works like notes that you can convert (based on mark-down) to mind map. It&#x27;s like a combination of Evernote and XMind. Video here: <a href="https:&#x2F;&#x2F;youtu.be&#x2F;nJjFs7GmIBQ" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;nJjFs7GmIBQ</a>.
mrrobotchicken大约 6 年前
Can&#x27;t see any link to collaborative demos for CKEditor 5 in the article but here it is: <a href="https:&#x2F;&#x2F;ckeditor.com&#x2F;collaboration&#x2F;real-time-collaborative-editing&#x2F;demo&#x2F;" rel="nofollow">https:&#x2F;&#x2F;ckeditor.com&#x2F;collaboration&#x2F;real-time-collaborative-e...</a>
评论 #19847361 未加载
nailer大约 6 年前
VSCode is collaborative and Open Source. You install a plugin and send someone a link - you are then hacking on their document, in your VScode on your keyboard with your plugins installed.<p>Sorry I can&#x27;t remember what the plugin is called, I used it every day at my last contract though. Made pairing super easy.
评论 #19848826 未加载
keybits大约 6 年前
I&#x27;m curious about the choice of PubSweet for the collaboration components. Can you summarise what functions PubSweet is performing in your example app, and are there alternatives to PubSweet that you looked at for this functionality?
评论 #19847347 未加载
dalore大约 6 年前
Some colleagues at work started to use <a href="https:&#x2F;&#x2F;hackmd.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;hackmd.io&#x2F;</a> for collaborative editing of markdown text. It works great.
atomanek大约 6 年前
A CKEditor 5 team member here. Thanks a lot for such an in-depth analysis, the article is a great read and we truly appreciate being a contender there.<p>As for the existing implementations of CKEditor 5 with real-time collaboration, I&#x27;m afraid since the collaborative editor is usually a component of a larger platform (publishing, e-learning, CMS, intranet, documentation management system etc.) it&#x27;d be difficult to find something like a publicly available real-life use case demo of it. Without much effort, you can check out the real-time collaborative editing demos (<a href="https:&#x2F;&#x2F;ckeditor.com&#x2F;collaboration&#x2F;real-time-collaborative-editing&#x2F;demo&#x2F;?active-demo=collaboration" rel="nofollow">https:&#x2F;&#x2F;ckeditor.com&#x2F;collaboration&#x2F;real-time-collaborative-e...</a>) that we have on our website.<p>A while ago we started building our own internal implementation of a collaborative document management system using CKEditor 5 and features such as real-time collaboration with track changes (something like Google Docs) for our own needs - hopefully, once we polish it a bit, we will be able to release it. We are working on publishing a few case studies with existing customers, too.<p>As for offline collaboration, our current solution switches the editor to read-only when you e.g. lose connectivity, and then the editing mode is back on when you reconnect, along with the changes that were done in the meantime by other users when you were offline. The platform is ready to fully support &quot;offline&quot; writing. We tested some more complex scenarios with one of the users being offline - and it works (however, no periods as long as days of being offline). We focused on delivering other collaborative editing features such as track changes or comments that were more required by our customers. Full support for writing while being offline is still on our roadmap, though.<p>As for the answer to why the collaboration component is not Open Source: we have currently 40 people in total working on CKEditor (CKEditor 4 &amp; CKEditor 5). Developing such a complex application takes a lot of time and resources and we simply need money to cover the expenses. Without that, we’d not be able to spend so much time on fixing bugs or bringing new features. Also, unfortunately, we learned the hard way that some of the biggest IT companies don’t want to help Open Source projects by spending even a single dollar on them, even if they use it in an application that brings them millions of dollars.<p>Regarding mobile support: CKEditor 5 works well on mobiles (with and without real-time collaboration). The comment you referred to was about the lack of an online demo of real-time collaboration on ckeditor.com for mobile devices. The reason behind this decision was that we are using the sidebar for displaying comments, which results in rather poor UX on mobiles. Fortunately, we are almost finishing the inline annotations plugin which will display comments inline, without using the sidebar. Feel free to assign a full Kiwi for mobile support :)<p>Thanks again for the article!
评论 #19848291 未加载
therobot24大约 6 年前
i feel like overleaf&#x2F;sharelatex should be somewhere in this article
评论 #19846084 未加载
ohiovr大约 6 年前
Collabora and onlyoffice are pretty good if you are looking for functionality similar to google docs.
Fnoord大约 6 年前
tmux + vim (akin to Windows Remote Assistance) can be good enough in some situations.
评论 #19847571 未加载
c0g大约 6 年前
Any whiteboard products? Collaborative drawing would make remote work lovely.
评论 #19847348 未加载
mushufasa大约 6 年前
The author didn&#x27;t mention TinyMCE. Was that on purpose? Is it not good?
评论 #19847128 未加载
Philipp0205大约 6 年前
Is there a way to use one of them without hosting it yourself?
评论 #19850707 未加载
评论 #19846822 未加载
karimtr大约 6 年前
Awesome! Thanks for sharing :D
marknadal大约 6 年前
For anyone who wants a quick primer on OT &#x2F; CRDT text algorithms:<p><a href="https:&#x2F;&#x2F;gun.eco&#x2F;explainers&#x2F;school&#x2F;class.html" rel="nofollow">https:&#x2F;&#x2F;gun.eco&#x2F;explainers&#x2F;school&#x2F;class.html</a> ( Cartoon Explainer! )<p>For a detailed deep dive, including RGA:<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=yCcWpzY8dIA" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=yCcWpzY8dIA</a>