Socket
Book a DemoInstallSign in
Socket

@seamlink/cordova-plugin-jitsi

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@seamlink/cordova-plugin-jitsi

This is plugin for Jitsi Meet calling service!

latest
Source
npmnpm
Version
2.1.1
Version published
Maintainers
1
Created
Source

cordova-plugin-jitsimeet

Cordova plugin for Jitsi Meet React Native SDK. Works with both iOS and Android, and fixes the 64-bit binary dependency issue with Android found in previous versions of this plugin.

Summary

This is based on the repo by findmate, but I updated the JitsiMeet SDK and WebRTC framework to the latest version, to get all features working in a Cordova app. The original repo is here: https://github.com/findmate/cordova-plugin-jitsi

Installation

cordova plugin add https://github.com/seamlink-dev/cordova-plugin-jitsi

Usage

const roomId = 'your-custom-room-id';

jitsiplugin.join('https://meet.jit.si/', roomId, false, (data) => {
	//CONFERENCE_WILL_JOIN
    //CONFERENCE_JOINED
    //CONFERENCE_TERMINATED
    //CONFERENCE_FINISHED
    //CONFERENCE_DESTROYED
    if (["CONFERENCE_TERMINATED", "READY_TO_CLOSE"].includes(data)) {
        jitsiplugin.destroy((data) => {
            // call finished
        }, f(err) => {
            console.log(err);
        });
    }
}, (err) => {
    console.log(err);
});

Keywords

ecosystem:cordova

FAQs

Package last updated on 05 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts