Calling with the JS SDK

Our SDK enables partners to use real time voice and video calling in their web applications. The following documentation explains how to get started.

Getting Started

Make sure your organization has been configured with the proper premium features enabled.

Our calling capability depends on the Twilio Video SDK. To get started, install the twilio-video library and include it with the initialization of the TigerConnect SDK.

npm install --save twilio-video
import { Client as TigerConnectClient } from 'tigerconnect';
import Video from 'twilio-video';
const client = new TigerConnectClient({
twilioVideo: Video,
});

Now you're ready to get started, review each section below for specific documentation on each step in the calling process.

In This Section: