v1.0.1
A typescript client for the jitsi api
Attributes
Includes Deno configuration
Repository
Current version released
3 years ago
Dependencies
jspm.dev
jsdomneo-xhr
skypack.dev
@xmldom/xmldom
std
Versions
Jitsi API Client
A typescript client for the jitsi api.
🔒 SonarCloud Monitored
Summary
JitsiClient api client is a wrapper around the low-level Jitsi api. It is somewhat experimental because it uses a custom Web-RTC implementation and some polyfills to emulate enough from a browser to use the jitsi api client with deno inside a backend.
Usage Example
import { JitsiClient } from 'https://deno.land/x/jitsi_api_client/mod.ts';
const client = await JitsiClient.join("meet.jit.si", "yourConferenceName");
// To register a new event listener use client.addConferenceEventListener
// See src/client.ts for code examples
For more information see our examples folder.