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.
Every package should use the same version.
liveblocks.config.ts
fileWe can use this file later to define types for our application.
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 with RoomProvider
.
After setting up the room, you can add collaborative components inside it, using
ClientSideSuspense
to add loading spinners to your app.
Now that we’re connected to a room, we can start using the Liveblocks hooks.
The first we’ll add is useOthers
, a hook that provides information about
which other users are connected to the room.
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
Congratulations! You now have set up the foundation to start building collaborative experiences for your React application.
We use cookies to collect data to improve your experience on our site. Read our Privacy Policy to learn more.