How to create a collaborative code editor with Monaco, Yjs, Next.js, and Liveblocks
In this tutorial, we’ll be building a collaborative code editor using Monaco, Yjs, Next.js, and Liveblocks.
This guide assumes that you’re already familiar with React, Next.js, TypeScript, and Monaco.
Install Monaco, Yjs, and Liveblocks into your Next.js application
Run the following command to install the Monaco, Yjs, and Liveblocks packages:
Set up access token authentication
The first step in connecting to Liveblocks is to set up an authentication
endpoint in /app/api/liveblocks-auth/route.ts
.
Here’s an example using the older API routes format in /pages
.
Initialize your Liveblocks config file
Let’s initialize the liveblocks.config.ts
file in which you’ll set up the
Liveblocks client.
We’ll also need another type for this tutorial. After creating the config file, open it up and insert the following:
Set up the client
Next, we can create the front end client which will be responsible for
communicating with the back end. You can do this by modifying createClient
in
your config file, and passing the location of your endpoint.
Join a Liveblocks room
Liveblocks uses the concept of rooms, separate virtual spaces where people
collaborate. To create a realtime experience, multiple users must be connected
to the same room. Create a file in the current directory within /app
, and name
it Room.tsx
.
Set up the Monaco editor
Now that we’ve set up Liveblocks, we can start integrating Monaco and Yjs in the
Editor.tsx
file.
And here is the Editor.module.css
file to make sure your multiplayer text
editor looks nice and tidy.
Add your editor to the current page
Next, add the CollaborativeEditor
into the page file, and place it inside the
Room
component we created earlier. We should now be seeing a basic
collaborative editor!
Add live cursors
To add live cursors to the code editor, we can get the userInfo
for the
current user with useSelf
, and
attach it Yjs awareness. Currently, the only way to style this is to loop
through each Yjs user, and dynamically insert CSS styles into the page, using
::after
to display users’ names. We’ll place this in a new file:
This CSS will work in combination with some other styles, which we can place in a global CSS file:
You can then import this into your editor to enable live cursors:
Add a toolbar
From this point onwards, you can build your Monaco app as normal! For example, should you wish to add a basic undo/redo toolbar to your app:
Add some matching styles:
You can then import this into your editor to enable basic Monaco features:
Create live avatars with Liveblocks hooks
Along with building out your code editor, you can now use other Liveblocks
features, such as Presence. The
useOthers
hook allows us to
view information about each user currently online, and we can turn this into a
live avatars component.
And here’s the styles:
You can then import this to your editor to see it in action:
Note that the cursors and avatars match in color and name, as the info for both is sourced from the Liveblocks authentication endpoint.
Try it out
You should now see the complete editor, along with live cursors, live avatars, and some basic features! On GitHub we have a working example of this multiplayer code editor.