Prebuilt Quickstart

Overview

This guide will walk you through the steps to create a video conferencing app using the Prebuilt component of the Roomkit package. Prebuilt is currently available for React applications, so basic familiarity with React is required to follow this guide.

If you get stuck at any point or need help in understanding a concept, you can put your query in our Discord Channel.

Prerequisites

  • React: Prebuilt is currently available for React applications, so basic familiarity with React is required to follow this guide.
  • 100ms account: You need to have a 100ms account to create a room and get a room-code. You can create a 100ms account here.
  • Room-code: Prebuilt component requires a room-code to join a room. You can get a room-code for a room using the 100ms dashboard. Refer this guide to learn more about room-codes.

Start a New React Project

To begin with setting up a new React project, you can follow the steps mentioned in React Quickstart. Currently, Prebuilt supports Next.js and Create React App with a React version of 17 and above.

Steps to create a new React project:

npx create-react-app my-app cd my-app

Install Roomkit

The latest version of Roomkit package is available on npm:

npm version

You can install it using the following command:

npm install @100mslive/roomkit-react --save

Add Prebuilt Component

Once your app is setup using create react app, you can add the Prebuilt component to your app.

For Create React App, you can add the Prebuilt component to your App.js file:

import { HMSPrebuilt } from '@100mslive/roomkit-react'; function App() { return ( <div style={{ height: "100vh" }}> <HMSPrebuilt roomCode="<room-code>" /> </div> ); } export default App;

Run the App

You can run the app using the following command:

npm start

Preview

Join a Room

Join

The Prebuilt component behaves like the 100ms sample app which can be forked from this GitHub repository.

The supported props are listed in the below section.

Props for HMSPrebuilt


HMSPrebuilt accepts the following props:

roomCode

  • The room code of the room you want to join. You can get the room code from the 100ms dashboard.

logo (optional)

  • An image URL as a string which is displayed in the preview screen and header.

authToken (optional)

  • This token is room and role specific. It can be copied from the join room modal on the dashboard. Read more about it here.

onJoin (optional)

  • A callback function that will be executed after the peer joins the call.

onLeave (optional)

  • A callback function that will be executed after the peer leaves the call, the session ends or if the peer gets kicked out.

options (optional)

  • An object which accepts the following parameters:
    • userName (optional): The name to be assigned to the peer.

    • userId (optional): The user ID to be assigned to the peer.


Have a suggestion? Recommend changes ->

Was this helpful?

1234