Liveblocks is a real-time 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.
liveblocks.config.ts
fileThe first step in connecting to Liveblocks is creating a client which
will be responsible for communicating with the back end. You can do
this by modifying createClient
in your config file, and
passing your public API key.
Liveblocks uses the concept of rooms, separate virtual spaces where people collaborate. To create a real-time experience, multiple users must be connected to the same room.
Now that we set up Liveblocks, we can start integrating Monaco and Yjs in the Editor.tsx
file.
To make the editor collaborative, we can rely on MonacoBinding
from y-monaco
.
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 for your collaborative Monaco code editor inside your React application.