Make your Lexical editor collaborative in minutes

Liveblocks enables you to add realtime syncing and multiplayer features to your Lexical editor with our realtime data store designed for collaborative text editors.

Companies of all sizes and industries use Liveblocks

Text Editor -
Add a collaborative rich text editor to your product

Add all the table stakes collaborative rich text editing features to your product.

import { liveblocksConfig, LiveblocksPlugin, FloatingToolbar, FloatingThreads, FloatingComposer } from "@liveblocks/react-lexical";import { LexicalErrorBoundary } from "@lexical/react/LexicalErrorBoundary";import { ContentEditable } from "@lexical/react/LexicalContentEditable";import { RichTextPlugin } from "@lexical/react/LexicalRichTextPlugin";import { LexicalComposer } from "@lexical/react/LexicalComposer";import { useThreads } from "@liveblocks/react";
export function Editor() { const { threads } = useThreads();
const initialConfig = liveblocksConfig({ namespace: "Demo", });
return ( <LexicalComposer initialConfig={initialConfig}> <RichTextPlugin contentEditable={<ContentEditable />} /> <LiveblocksPlugin> <FloatingToolbar /> <FloatingThreads threads={threads} /> <FloatingComposer threads={threads} /> </LiveblocksPlugin> </LexicalComposer> );}

Add collaboration to your product today

We use cookies to collect data to improve your experience on our site. Read our Privacy Policy to learn more.