1.0.1 • Published 3 years ago
@vlefr/lib-jitsi-meet v1.0.1
Jitsi Meet API library (with import & TypeScript support)
You can use Jitsi Meet API to create Jitsi Meet video conferences with a custom GUI.
Changes to the original repo: (fork from https://github.com/solydhq/lib-jitsi-meet)
- export unbundled code
- TypeScript support
- published to npm
- updated dependencies
- a few bug fixes (see pull requests)
Installation
yarn add @vlefr/lib-jitsi-meetUsage
import JitsiMeetJS from "@vlefr/lib-jitsi-meet";
JitsiMeetJS.init(initOptions);
const connection = new JitsiMeetJS.JitsiConnection(null, token, options);Alternative useage
We also provide a prebundled version with jQuery bundled in.
import `@vlefr/lib-jitsi-meet/dist/umd/lib-jitsi-meet.min.js`Building the sources
NOTE: you need Node.js >= 14, npm >= 7 and yarn >= 1
To build the library, just type:
yarn install
yarn buildTo lint:
yarn lintand to run unit tests:
yarn testif you need to rebuild lib-jitsi-meet.min.js
yarn buildRelease
yarn release