Get started with 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 hooks from the
@liveblocks/react package.
Quickstart
Install Liveblocks
Every 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.tsxCreate a multiplayer input
From this point, you can use Liveblocks hooks to create your multiplayer app. For example, you can create a shared input that stays in sync across users. To set it up, first define your storage type in
liveblocks.config.ts. AninputLiveObjectcan store the text of the input.liveblocks.config.tsNext, set an initial value for
inputonRoomProvider, a newLiveObjectwith atextvalue.App.tsxNow, use
useStorageto read the value ofinput.textanduseMutationto update it.Room.tsxOpen your app in two browser tabs to see the input update in realtime.
Show custom presence
useOthersallows you to access a list of users that are currently connected to the room. Build a simple avatar stack from the list of connected users.Avatars.tsxOpen your app in two browser tabs to see avatars appear for each user.
Next: 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 collaborative experiences for your React application.
- @liveblocks/react API Reference
- React guides
- How to use Liveblocks Presence with React
- How to use Liveblocks Storage with React