Setup - Javascript
With javascript SDK, you can
- Customise call layout and interface
- Manage all the events related to meetings and participants
- Call routines on particular event.
To use javascript-sdk
, you have two choices to make either use npm
module or <script>
tag in your bundler or direct in HTML.
Loading the library using <script>
tag
You can import this library using <script>
tag. The easiest way to get started is to load this library from CDN, and add a couple of lines of code to your web page or app.
Load JS SDK in your app
<html>
<head>....</head>
<body>
.....
<script src="https://sdk.videosdk.live/js-sdk/0.0.86/videosdk.js"></script>
</body>
</html>
Install JS SDK in your app / Bundling with webpack and other tools
Another interesting option is to install library in your app and bundle it using webpack or rollup.
- NPM
- YARN
npm install @videosdk.live/js-sdk
yarn add @videosdk.live/js-sdk
Then in your application code:
// Webpack/node-style require
const VideoSDK = require("@videosdk.live/js-sdk");
// or
// es6 import
import { VideoSDK } from "@videosdk.live/js-sdk";
VideoSDK.config("<token>")
VideoSDK.initMeeting({...})
Got a Question? Ask us on discord