Get started with a SuperDoc DOCX 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 the APIs from the
@liveblocks/yjs package, and
SuperDoc, a collaborative DOCX editor for the web.
Quickstart
Install Liveblocks, Yjs, and SuperDoc
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.App.tsxJoin a Liveblocks room
After setting up the room, you can add collaborative components inside it, using
ClientSideSuspenseto add loading spinners to your app.App.tsxSet up the collaborative SuperDoc editor
Now that we set up Liveblocks, we can start integrating SuperDoc and Yjs in the
Editor.tsxfile. We usegetYjsProviderForRoomto get a Yjs document and provider, then pass them to the<SuperDocEditor />component throughmodules.collaboration. The component handles mounting, cleanup, and SSR for you. It rebuilds whenmoduleschanges, so we memoize it.Editor.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 the foundation for your collaborative SuperDoc DOCX editor inside your React application.