0.2.0 • Published 2 years ago

@jitsi/web-sdk v0.2.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

Jitsi Meet Web SDK

The Jitsi Meet Web SDK provides the same user experience as the Jitsi Meet app, in a customizable way which you can embed in your apps.

Install

npm install @jitsi/web-sdk

Modules

fetchExternalApi

To import the Jitsi Meet External API in a non-React project:

window.onload = () => {
    fetchExternalApi().then(JitsiMeetExternalApi => {
        const api = new JitsiMeetExternalApi("YOUR_DOMAIN");
    });
}

JitsiMeeting

To be used with custom domains as-it-is in React projects:

<JitsiMeeting
    domain="YOUR_DOMAIN"
/>

JaaSMeeting

To be used with 8x8.vc domain as-it-is in React projects:

<JaaSMeeting
    appId="YOUR_APP_ID"
/>

Samples

Install and run the projects from the examples directory to see the modules in action.

npm run start-fetch-demo
npm run start-component-demo