Next.js 13 Quickstart

Get started with LiveKit and Next.js 13

1. Install LiveKit SDK

Install both frontend and backend LiveKit SDKs:

yarn add livekit-server-sdk @livekit/components-react @livekit/components-styles

2. Keys and Configuration

To start, your app needs an LiveKit API key and secret, as well as your LiveKit project URL.

In your project root create the file .env.local with the following contents. Do not commit this file because it contains your secrets!

LIVEKIT_API_KEY=<your API Key>
LIVEKIT_API_SECRET=<your API Secret>
NEXT_PUBLIC_LIVEKIT_URL=<your LiveKit server URL>

3. Create token endpoint

Create a new file at /app/api/get-participant-token/route.ts with the following contents:

import { AccessToken } from "livekit-server-sdk";
import { NextRequest, NextResponse } from "next/server";
export async function GET(req: NextRequest) {
const room = req.nextUrl.searchParams.get("room");
const username = req.nextUrl.searchParams.get("username");
if (!room) {
return NextResponse.json(
{ error: 'Missing "room" query parameter' },
{ status: 400 }
);
} else if (!username) {
return NextResponse.json(
{ error: 'Missing "username" query parameter' },
{ status: 400 }
);
}
const apiKey = process.env.LIVEKIT_API_KEY;
const apiSecret = process.env.LIVEKIT_API_SECRET;
const wsUrl = process.env.NEXT_PUBLIC_LIVEKIT_URL;
if (!apiKey || !apiSecret || !wsUrl) {
return NextResponse.json(
{ error: "Server misconfigured" },
{ status: 500 }
);
}
const at = new AccessToken(apiKey, apiSecret, { identity: username });
at.addGrant({ room, roomJoin: true, canPublish: true, canSubscribe: true });
return NextResponse.json({ token: await at.toJwt() });
}

4. Make a page in your web app

Make a new file at /app/room/page.tsx with the following contents:

"use client";
import '@livekit/components-styles';
import {
LiveKitRoom,
VideoConference,
GridLayout,
ParticipantTile,
} from '@livekit/components-react';
import { Track } from 'livekit-client';
import { useEffect, useState } from 'react';
export default function Page() {
// TODO: get user input for room and name
const room = "quickstart-room";
const name = "quickstart-user";
const [token, setToken] = useState("");
useEffect(() => {
(async () => {
try {
const resp = await fetch(
`/api/get-participant-token?room=${room}&username=${name}`
);
const data = await resp.json();
setToken(data.token);
} catch (e) {
console.error(e);
}
})();
}, []);
if (token === "") {
return <div>Getting token...</div>;
}
return (
<LiveKitRoom
video={true}
audio={true}
token={token}
serverUrl={process.env.NEXT_PUBLIC_LIVEKIT_URL}
// Use the default LiveKit theme for nice styles.
data-lk-theme="default"
style={{ height: '100dvh' }}
>
{/* Your custom component with basic video conferencing functionality. */}
<MyVideoConference />
{/* The RoomAudioRenderer takes care of room-wide audio for you. */}
<RoomAudioRenderer />
{/* Controls for the user to start/stop audio, video, and screen
share tracks and to leave the room. */}
<ControlBar />
</LiveKitRoom>
);
}
function MyVideoConference() {
// `useTracks` returns all camera and screen share tracks. If a user
// joins without a published camera track, a placeholder track is returned.
const tracks = useTracks(
[
{ source: Track.Source.Camera, withPlaceholder: true },
{ source: Track.Source.ScreenShare, withPlaceholder: false },
],
{ onlySubscribed: false },
);
return (
<GridLayout tracks={tracks} style={{ height: 'calc(100vh - var(--lk-control-bar-height))' }}>
{/* The GridLayout accepts zero or one child. The child is used
as a template to render all passed in tracks. */}
<ParticipantTile />
</GridLayout>
);
}

5. Load the page and connect

Start your server with:

yarn dev

And then open localhost:3000/room in your browser.

6. Next Steps

If you're looking to dive deeper into building your LiveKit app with React, check out the React Components reference section. There you'll find a comprehensive list of available components and React hooks, along with examples of how to use them. This is a great resource for building more complex and advanced apps. Happy coding!