Make your Tiptap editor collaborative in minutes

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

Companies of all sizes and industries use Liveblocks

Multiplayer Editing -
Add realtime collaboration to your product experience

Let users co-edit text and manipulate data simultaneously, in realtime—just like Figma or Notion.

import { useLiveblocksExtension, FloatingToolbar, FloatingThreads, FloatingComposer } from "@liveblocks/react-tiptap";import { useEditor, EditorContent } from "@tiptap/react";import { useThreads } from "@liveblocks/react";import StarterKit from "@tiptap/starter-kit";
export function Editor() { const liveblocks = useLiveblocksExtension(); const { threads } = useThreads();
const editor = useEditor({ extensions: [ liveblocks, StarterKit.configure({ history: false, }), ], });
return ( <> <EditorContent editor={editor} /> <FloatingToolbar editor={editor} /> <FloatingThreads editor={editor} threads={threads} /> <FloatingComposer editor={editor} threads={threads} /> </> );}

Turn your product into the space where people and AI collaborate

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