This monorepo contains all the packages required to integrate 100ms on the web.
The packages folder contains all the SDK's of 100ms. Here is a brief overview of them:
Directory | Package | Description | Link |
---|---|---|---|
hms-video-store |
@100mslive/hms-video-store |
This package contains the core SDK and the reactive store parts. | README |
react-icons |
@100mslive/react-icons |
This contains all the icons used in the 100ms prebuilt. | README |
react-sdk |
@100mslive/react-sdk |
This contains the base React Hooks and some commonly used functionalities as React Hooks. | README |
roomkit-react |
@100mslive/roomkit-react |
This contains the React components used in the Prebuilt and the Prebuilt component itself. | README |
roomkit-web |
@100mslive/roomkit-web |
This is a web component port of the HMSPrebuilt component from the roomkit-react . If you are not using React,this can be used as a web component. |
README |
For full documentation, visit 100ms.live/docs
The 100ms SDK gives you everything you need to build scalable, high-quality live video and audio experiences.
There are two ways you can add 100ms to your apps:
-
- 100ms SDKs are powerful and highly extensible to build and support all custom experiences and UI.
- Related packages include:
@100mslive/react-sdk
,@100mslive/hms-video-store
and@100mslive/react-icons
. - Get started with integrating the SDK using the How to Guide.
Navigate to
react-sdk
for the base React Hooks and some commonly used functionalities by clicking here.
-
- 100ms Prebuilt is a high-level abstraction with no-code customization that enables you to embed video conferencing and/or live streaming UI—with a few lines of code.
- Related packages include:
roomkit-react
androomkit-web
. - Get started with 100ms Prebuilt using the Prebuilt Quickstart for Web.
Navigate to
roomkit-react
for the React components used in Prebuilt and the Prebuilt component itself by clicking here.
Client | Repository | Docs | Example |
---|---|---|---|
Web | web-sdks | Link | prebuilt-react-integration |
Android | 100ms-android | Link | AndroidPrebuiltDemo |
iOS | 100ms-roomkit-ios | Link | 100ms-roomkit-example |
Flutter | 100ms-flutter | Link | hms_room_kit/example |
React Native | 100ms-react-native | Link | react-native-room-kit/example |
Node version 18.0.0 or later
if you are using a different version in other projects, use nvm to manage node versions.
git clone https://github.com/100mslive/web-sdks.git
cd web-sdks
yarn install
yarn build
cd examples/prebuilt-react-integration
yarn dev
http://locahost:<port>/<room-code>
Once you run yarn dev
, the localhost link with the port will be generated automatically. Just get the roomCode from 100ms dashboard and append at the end
Run yarn start
by navigating to the package you are making changes to, the changes should reflect in the above sample app.
For example, if you are making changes in roomkit-react(prebuilt), run yarn start
in that package. The sample app should auto reload.
Note: Make sure
yarn build
is run atleast once before usingyarn start
Once you have forked the repository and tested your changes on the local build, you can follow the steps below to deploy to Vercel as an example:
- Import the fork repository
- Set
examples/prebuilt-react-integration
as the root directory - Use the Create React App preset and update the build and install commands
Project Settings
to use the root level scripts- install:
cd ../../ && yarn install
- build:
cd ../../ && yarn build
- install:
For reference:
Once the app has been deployed, you can append the room code at the end of the deployment URL to preview your changes
Tthe following command will build the roomkit-react package and generate a .tgz file:
yarn && yarn build;
cd packages/roomkit-react;
yarn pack
Push your changes and the .tgz file to the forked repository and in the package.json of the app you are building, use the following link for the roomkit-react package:
"@100mslive/roomkit-react":"https://github.com/<user_name>/web-sdks/raw/main/packages/roomkit-react/<tgz_file_name>.tgz",
Re-install the dependencies after updating the package.json and build using the following command:
yarn && yarn build
You can now import the HMSPrebuilt component in the same way as before:
import { HMSPrebuilt } from '@100mslive/roomkit-react';
We welcome external contributors or anyone excited to help improve 100ms SDKs. If you'd like to get involved, check out our contribution guide, and get started exploring the codebase.
Please join us on Discord to discuss any new ideas and/or PRs.
- GitHub Issues - Submit any bugs or errors you encounter using the Web SDKs.
- Discord - Hang out with the community members, share your projects or ask questions to get help from the 100ms team.
- Contact - Reach out to 100ms team to get pricing information, understand how we can help you go live, or to learn more about the platform.