openvidu-js#
This tutorial is a simple video-call application built with plain JavaScript, HTML and CSS that allows:
- Joining a video call room by requesting a token from any application server.
- Publishing your camera and microphone.
- Subscribing to all other participants' video and audio tracks automatically.
- Leaving the video call room at any time.
It uses the LiveKit JS SDK to connect to the LiveKit server and interact with the video call room.
Running this tutorial#
1. Run OpenVidu Server#
-
Download OpenVidu
-
Configure the local deployment
-
Run OpenVidu
To use a production-ready OpenVidu deployment, visit the official deployment guide.
Configure Webhooks
All application servers have an endpoint to receive webhooks from OpenVidu. For this reason, when using a production deployment you need to configure webhooks to point to your local application server in order to make it work. Check the Send Webhooks to a Local Application Server section for more information.
2. Download the tutorial code#
3. Run a server application#
To run this server application, you need Node installed on your device.
- Navigate into the server directory
- Install dependencies
- Run the application
For more information, check the Node.js tutorial.
To run this server application, you need Go installed on your device.
- Navigate into the server directory
- Run the application
For more information, check the Go tutorial.
To run this server application, you need Ruby installed on your device.
- Navigate into the server directory
- Install dependencies
- Run the application
For more information, check the Ruby tutorial.
To run this server application, you need Java and Maven installed on your device.
- Navigate into the server directory
- Run the application
For more information, check the Java tutorial.
To run this server application, you need Python 3 installed on your device.
-
Navigate into the server directory
-
Create a python virtual environment
-
Activate the virtual environment
-
Install dependencies
-
Run the application
For more information, check the Python tutorial.
To run this server application, you need Rust installed on your device.
- Navigate into the server directory
- Run the application
For more information, check the Rust tutorial.
To run this server application, you need PHP and Composer installed on your device.
- Navigate into the server directory
- Install dependencies
- Run the application
Warning
LiveKit PHP SDK requires library BCMath. This is available out-of-the-box in PHP for Windows, but a manual installation might be necessary in other OS. Run sudo apt install php-bcmath
or sudo yum install php-bcmath
For more information, check the PHP tutorial.
To run this server application, you need .NET installed on your device.
- Navigate into the server directory
- Run the application
Warning
This .NET server application needs the LIVEKIT_API_SECRET
env variable to be at least 32 characters long. Make sure to update it here and in your OpenVidu Server.
For more information, check the .NET tutorial.
4. Run the client application#
To run the client application tutorial, you need an HTTP web server installed on your development computer. A great option is http-server. You can install it via NPM:
-
Navigate into the application client directory:
-
Serve the application:
Once the server is up and running, you can test the application by visiting http://localhost:5080
. You should see a screen like this:
Accessing your application client from other devices in your local network
One advantage of running OpenVidu locally is that you can test your application client with other devices in your local network very easily without worrying about SSL certificates.
Access your application client through https://xxx-yyy-zzz-www.openvidu-local.dev:5443
, where xxx-yyy-zzz-www
part of the domain is your LAN private IP address with dashes (-) instead of dots (.). For more information, see section Accessing your local deployment from other devices on your network.
Understanding the code#
This application is designed to be beginner-friendly and consists of only three essential files that are located in the src
directory:
app.js
: This is the main JavaScript file for the sample application. It uses the LiveKit JS SDK to connect to the LiveKit server and interact with the video call room.index.html
: This HTML file is responsible for creating the user interface. It contains the form to connect to a video call and the video call layout.styles.css
: This file contains CSS classes that are used to style theindex.html
page.
To use the LiveKit JS SDK in your application, you need to include the library in your HTML file. You can do this by adding the following script tag to the <head>
section of your HTML file:
Then, you can use the LivekitClient
object in your JavaScript code by referencing it from the window
object under LivekitClient
. When accessing symbols from the class, you will need to prefix them with LivekitClient.
. For example, Room
becomes LivekitClient.Room
.
Now let's see the code of the app.js
file:
app.js | |
---|---|
|
- The URL of the application server.
- The URL of the LiveKit server.
- The LivekitClient object, which is the entry point to the LiveKit JS SDK.
- The room object, which represents the video call room.
The app.js
file defines the following variables:
APPLICATION_SERVER_URL
: The URL of the application server. This variable is used to make requests to the server to obtain a token for joining the video call room.LIVEKIT_URL
: The URL of the LiveKit server. This variable is used to connect to the LiveKit server and interact with the video call room.LivekitClient
: The LiveKit JS SDK object, which is the entry point to the LiveKit JS SDK.room
: The room object, which represents the video call room.
Configure the URLs
When running OpenVidu locally, leave APPLICATION_SERVER_URL
and LIVEKIT_URL
variables empty. The function configureUrls()
will automatically configure them with default values. However, for other deployment type, you should configure these variables with the correct URLs depending on your deployment.
Joining a Room#
After the user specifies their participant name and the name of the room they want to join, when they click the Join
button, the joinRoom()
function is called:
app.js | |
---|---|
|
- Initialize a new
Room
object. - Event handling for when a new track is received in the room.
- Event handling for when a track is destroyed.
- Get the room name and participant name from the form.
- Get a token from the application server with the room name and participant name.
- Connect to the room with the LiveKit URL and the token.
- Hide the "Join room" page and show the "Room" page.
- Publish your camera and microphone.
The joinRoom()
function performs the following actions:
- It creates a new
Room
object usingLivekitClient.Room()
. This object represents the video call room. -
Event handling is configured for different scenarios within the room. These events are fired when new tracks are subscribed to and when existing tracks are unsubscribed.
LivekitClient.RoomEvent.TrackSubscribed
: This event is triggered when a new track is received in the room. It handles the attachment of the track to the HTML page, assigning an ID, and appending it to thelayout-container
element. If the track is of kindvideo
, avideo-container
is created and participant data is appended as well.
app.js function addTrack(track, participantIdentity, local = false) { const element = track.attach(); // (1)! element.id = track.sid; /* If the track is a video track, we create a container and append the video element to it with the participant's identity */ if (track.kind === "video") { const videoContainer = createVideoContainer(participantIdentity, local); videoContainer.append(element); appendParticipantData(videoContainer, participantIdentity + (local ? " (You)" : "")); } else { document.getElementById("layout-container").append(element); } }
- Attach the track to an HTML element.
app.js function createVideoContainer(participantIdentity, local = false) { const videoContainer = document.createElement("div"); videoContainer.id = `camera-${participantIdentity}`; videoContainer.className = "video-container"; const layoutContainer = document.getElementById("layout-container"); if (local) { layoutContainer.prepend(videoContainer); } else { layoutContainer.append(videoContainer); } return videoContainer; } function appendParticipantData(videoContainer, participantIdentity) { const dataElement = document.createElement("div"); dataElement.className = "participant-data"; dataElement.innerHTML = `<p>${participantIdentity}</p>`; videoContainer.prepend(dataElement); }
LivekitClient.RoomEvent.TrackUnsubscribed
: This event occurs when a track is destroyed, and it takes care of detaching the track from the HTML page and removing it from the DOM. If the track is avideo
track,video-container
with the participant's identity is removed as well.
These event handlers are essential for managing the behavior of tracks within the video call.
Take a look at all events
You can take a look at all the events in the Livekit Documentation
-
It retrieves the room name and participant name from the form.
-
It requests a token from the application server using the room name and participant name. This is done by calling the
getToken()
function:app.js /** * -------------------------------------------- * GETTING A TOKEN FROM YOUR APPLICATION SERVER * -------------------------------------------- * The method below request the creation of a token to * your application server. This prevents the need to expose * your LiveKit API key and secret to the client side. * * In this sample code, there is no user control at all. Anybody could * access your application server endpoints. In a real production * environment, your application server must identify the user to allow * access to the endpoints. */ async function getToken(roomName, participantName) { const response = await fetch(APPLICATION_SERVER_URL + "token", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ roomName, participantName }) }); if (!response.ok) { const error = await response.json(); throw new Error(`Failed to get token: ${error.errorMessage}`); } const token = await response.json(); return token.token; }
This function sends a POST request using
fetch()
to the application server's/token
endpoint. The request body contains the room name and participant name. The server responds with a token that is used to connect to the room. -
It connects to the room using the LiveKit URL and the token.
- It updates the UI to hide the "Join room" page and show the "Room" layout.
- It publishes the camera and microphone tracks to the room using
room.localParticipant.enableCameraAndMicrophone()
, which asks the user for permission to access their camera and microphone at the same time. The local video track is then added to the layout.
Leaving the Room#
When the user wants to leave the room, they can click the Leave Room
button. This action calls the leaveRoom()
function:
app.js | |
---|---|
|
- Disconnect the user from the room.
- Remove all HTML elements inside the layout container.
- Show the "Join room" page and hide the "Room" layout.
- Call the
disconnect()
method on theroom
object when the user closes the tab or navigates to another page.
The leaveRoom()
function performs the following actions:
- It disconnects the user from the room by calling the
disconnect()
method on theroom
object. - It removes all HTML elements inside the layout container by calling the
removeAllLayoutElements()
function. - It shows the "Join room" page and hides the "Room" layout.
The window.onbeforeunload
event is used to ensure that the user is disconnected from the room before the page is unloaded. This event is triggered when the user closes the tab or navigates to another page.