noteloom
← All features

Live collaboration

Collaborative Markdown editor

Create a collaborative Markdown-like editor with WebRTC peer connections, presence, live cursors, and a block-tree CRDT.

Why this deserves its own page

Collaborative Markdown searches need a clear answer on architecture: what syncs, what needs a server, and where the limits are.

The better answer is specific: show the feature, give the copy-paste path, link to the deep docs, and let the reader try the real editor. That is how documentation becomes part of the product instead of a folder people visit only when something breaks.

Copy-paste example

Start with the batteries-included React API. The same document can later be exported as JSON, HTML, or plain text, depending on what your app needs.

jsx
import { CollabSession, useEditor, NoteloomEditor } from 'noteloom';

function CollaborativeEditor() {
  const editor = useEditor();
  return <NoteloomEditor editor={editor} />;
}

What to try live

Try two synced editors in the collaboration playground.