Quickstart - Get started with React Flow using Liveblocks and Next.js
Liveblocks is a realtime collaboration infrastructure for building performant
collaborative experiences. Follow the following steps to start adding
collaboration to your Next.js application using the APIs from the
@liveblocks/react-flow package.
Quickstart
Install Liveblocks and React Flow
Every Liveblocks package should use the same version.
TerminalInitialize the
liveblocks.config.tsfileWe can use this file later to define types for our application.
TerminalCreate a Liveblocks room
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. When using Next.js’
/approuter, we recommend creating your room in aRoom.tsxfile in the same directory as your current route.Set up a Liveblocks client with
LiveblocksProvider, join a room withRoomProvider, and useClientSideSuspenseto add a loading spinner to your app.app/Room.tsxAdd the Liveblocks room to your page
After creating your room file, it’s time to join it. Import your room into your
page.tsxfile, and place your collaborative app components inside it.app/page.tsxSet up the collaborative React Flow diagram
Now that Liveblocks is set up, integrate React Flow in the
Flow.tsxfile.useLiveblocksFlowkeeps nodes and edges in sync across clients using Liveblocks Storage.app/Flow.tsxAdd multiplayer cursors
To show where collaborators are pointing in the diagram, render
CursorsinsideReactFlow. Also include the Liveblocks styles in addition to the React Flow ones.app/Flow.tsxNext: authenticate and add your users
Your diagram and cursors work now, but each user is anonymous—the next step is to authenticate each user as they connect, and attach their name, color, and avatar for components like
CursorsorAvatarStack.Set up authentication and add user information
What to read next
Congratulations! You now have set up the foundation for a collaborative React Flow diagram inside your Next.js application.