Get started with a BlockNote text editor using Liveblocks and React
Liveblocks is a realtime collaboration infrastructure for building performant
collaborative experiences. Follow the following steps to start adding
collaboration to your React application using
@liveblocks/react-blocknote
with LiveText backed by
Liveblocks Storage.
The BlockNote LiveText integration is currently in beta, and LiveText documents are limited to 2 MB. Read the LiveText vs Yjs guide to compare both approaches.
Quickstart
Install Liveblocks and BlockNote
Every Liveblocks package should use the same version.
TerminalInitialize the
liveblocks.config.tsfileWe can use this file later to define types for our application.
TerminalSet up the Liveblocks client
Liveblocks uses the concept of rooms, separate virtual spaces where people collaborate, and to create a realtime experience, multiple users must be connected to the same room. Set up a Liveblocks client with
LiveblocksProvider, and join a room withRoomProvider.In Storage mode, documents are created under
root._tiptap_docswhen the editor first connects, so you can leaveinitialStorageempty.App.tsxJoin a Liveblocks room
After setting up the room, you can add collaborative components inside it, using
ClientSideSuspenseto add a loading spinner to your app.App.tsxSet up the collaborative BlockNote editor
Create a BlockNote editor in
Editor.tsx. PasscollaborationMode: "liveblocks"touseCreateBlockNoteWithLiveblocksso the document syncs through Storage. Set afieldname and optionalinitialContentfor the first visit.Editor.tsxRender threads
Comments work the same as in Yjs mode. Create a
Threads.tsxfile that usesFloatingComposerfor creating new threads, alongsideAnchoredThreadsandFloatingThreadsfor displaying threads on desktop and mobile.Threads.tsxStyle your editor
Import the default BlockNote and Liveblocks styles, and add basic editor CSS:
main.tsxNext: authenticate and add your users
Text Editor is set up and working now, but each user is anonymous—the next step is to authenticate each user as they connect, and attach their name, color, and avatar, to their cursors and mentions.
Add your users to Text Editor
What to read next
Congratulations! You now have set up a Storage-backed collaborative BlockNote editor inside your React application.