npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@collabworkx/capacitor-jitsimeet-plugin

v0.1.6

Published

A Jitsi meet plugin adjusted for modern hardware

Readme

Capacitor Jitsi Meet NPM

A plugin that enables Ionic Capacitor to access Jitsi Meet Conferences for iOS and Android.

Development on break, resumes June 16th, 2025.

Featuring:

  • Picture in Picture
  • Video Calls
  • Audio Calls
  • Breakout Rooms
  • Waiting Rooms
  • Integrated Chat
  • Moderation Controls
  • and more...

iOS Road Map

Android Road Map

Compatibility

Usage

  1. Install pluging trough NPM or Git
@collabworkx/capacitor-jitsimeet-plugin
  1. Add it to your JS module and call it
import { Jitsi } from "@collabworkx/capacitor-jitsimeet-plugin";

const result = await Jitsi.joinConference({
    // required parameters
    roomName: 'room1', // room identifier for the conference
    url: 'https://meet.jit.si', // endpoint of the Jitsi Meet video bridge

    // recommended settings for production build. see full list of featureFlags in the official Jitsi Meet SDK documentation
    featureFlags: {
        'prejoinpage.enabled': false, // go straight to the meeting and do not show the pre-join page
        'recording.enabled': false, // disable as it requires Dropbox integration
        'live-streaming.enabled': false, // 'sign in on Google' button not yet functional
        'android.screensharing.enabled': false, // experimental feature, not fully production ready
        'pip.enabled': false, // flag that enables PiP mode
    },

    // optional parameters
    subject: string, // name of the video room
    displayName: string, // user's display name
    email: string, // user's email
    avatarURL: string, // user's avatar url
    startWithAudioMuted: true, // start with audio muted, default: false
    startWithVideoMuted: false, // start with video muted, default: false
    chatEnabled: false, // enable Chat feature, default: true
    inviteEnabled: false, // enable Invitation feature, default: true

    // advanced parameters (optional)
    token: string, // jwt authentication token
    configOverrides: { 'p2p.enabled': false }, // see list of config overrides in the official Jitsi Meet SDK documentation
});
console.log(result) // { success: true }

window.addEventListener('onConferenceJoined', () => {
    // do things here
});
window.addEventListener('onConferenceTerminated', () => {
    // do things here
});
window.addEventListener('onConferenceLeft', () => {
    // do things here
});
window.addEventListener('onChatMessageReceived', (data: any) => {
    // console.log("message", JSON.stringify(data))
    // {"isTrusted":false,"senderId":"00b50123","isPrivate":"false","message":"this is the message","timestamp":"2024-09-16T18:53:34Z"}
});
window.addEventListener('onParticipantsInfoRetrieved', (data: any) => {
    // console.log("participant info", JSON.stringify(data));
    //{"isTrusted":false,"participantsInfo":"[{participantId=00b50123, name=My Name, role=moderator, avatarUrl=https://xxx.png, isLocal=true}
});

const result = await Jitsi.leaveConference()
console.log(result) // { success: true }

Customization

Custom Toolbar Buttons

This build features customization options using customToolbarButtons config overrides (THANKS TO @dima887 for this wonderful code)

const result = await Jitsi.joinConference({
    // required parameters
    roomName: 'room1', // room identifier for the conference
    url: 'https://meet.jit.si', // endpoint of the Jitsi Meet video bridge

    // optional parameters
    configOverrides: {
        customToolbarButtons: [
            {
                icon: 'https://w7.pngwing.com/pngs/987/537/png-transparent-download-downloading-save-basic-user-interface-icon-thumbnail.png',
                id: 'btn1',
                text: 'Button one'
            },
            {
                icon: 'https://w7.pngwing.com/pngs/987/537/png-transparent-download-downloading-save-basic-user-interface-icon-thumbnail.png',
                id: 'btn2',
                text: 'Button two'
            }
        ]
    },
});

const handleCustomButton = async (event) => {
    try {
        const { id, text } = event;
        if (id === 'btn1') {
            console.log(id, text);
            // do things here
        } else if (id === 'btn2') {
            console.log(id, text);
            // do things here
        }
    } catch (e) {
        console.error('Error parsing custom button event:', e);
    }
};

window.addEventListener('onCustomButtonPressed', handleCustomButton);

Custom PiP information

This PiP Mode relies on building custom interfaces that display conference information, PiP mode natively for Jitsi is at this point nearly impossible to implement without reliying on low performance gestureDelegations that need to be passed on to the webview scope. For now, this can be used to create minimized views similar to whatsapp. Newer updates on call start will try to give back RTCVideo information to preview.

The following methods have been made available to JS land, current PiP view button inside the Jitsi Meet view will execute "HideConference".

await Jitsi.hideConference();
await Jitsi.showConference();

Official Jitsi-Meet SDK Documentation and constants

This plugin uses Jitsi Meet SDK for IOS and Android:

Jitsi Infrastructure Requirements

This plugin is made to integrate with Jitsi Meet, It is possible to run this plugin with https://meet.jitsi.si, however Jitsi warns developers to use it ONLY for development purposes due to service configuration not apt for production. Meetings created with development environment will be limited to 5 minutes. Additionally, development environment no longer allows anonymous conferences as stated in their blog published on Aug 22, 2023: Authentication on meet.jit.si

For production please use either one of these solutions below:

Contributing

If you are looking to contribute to the development of this plugin, feel free to fork it and push updates to this repository!

This plugin is being released to all using the Apache License 2.0. Jitsi Meet SDK for IOS and Android are licensed trough Apache License 2.0, please visit Jitsi Github for more information and repositories.