Quickstart - Get started with a multiplayer Handsontable spreadsheet using Liveblocks and Next.js
Liveblocks is a realtime collaboration infrastructure for building performant
collaborative experiences. Follow the following steps to start adding
multiplayer to a Handsontable spreadsheet in your Next.js /app directory
application using the hooks from
@liveblocks/react.
Quickstart
Install Liveblocks and Handsontable
Every Liveblocks package should use the same version.
TerminalInitialize the
liveblocks.config.tsfileWe can use this file later to define types for our application.
TerminalDefine your Liveblocks types
Create 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.Pass
initialPresenceandinitialStorageto set up the default presence and an empty grid.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 Handsontable spreadsheet
Now that Liveblocks is set up, integrate Handsontable in the
Table.tsxfile.useStoragereads the grid data from Liveblocks Storage, anduseMutationwrites cell changes back. We also use presence to highlight which cell each user has selected.app/Table.tsxNext: set up authentication
By default, Liveblocks is configured to work without an authentication endpoint where everyone automatically has access to rooms. This approach is great for prototyping and marketing pages where setting up your own security isn't always required. If you want to limit access to a room for certain users, you'll need to set up an authentication endpoint to enable permissions.
Set up authentication
What to read next
Congratulations! You now have set up the foundation to start building a multiplayer Handsontable spreadsheet for your Next.js application.