Jitsi Meet desktop application powered by
Go to file
Saúl Ibarra Corretgé e20e3b4b83 Add SECURITY.md 2020-06-02 09:54:20 +02:00
app Add randdom room name generation 2020-05-20 12:06:27 +02:00
patches Disable sandbox on Linux 2020-04-14 10:47:07 +02:00
resources Configured electron-builder for app release 2018-07-05 21:00:19 +02:00
.eslintignore Configured electron-builder for app release 2018-07-05 21:00:19 +02:00
.eslintrc.js Updated eslint-config-jitsi 2018-06-11 08:26:57 +02:00
.flowconfig Update dependencies 2018-12-27 16:56:51 +00:00
.gitignore Configured electron-builder for app release 2018-07-05 21:00:19 +02:00
.travis.yml Fix patching linux sandbox support 2020-04-14 15:12:56 +02:00
LICENSE Initial commit 2016-12-12 14:52:17 -06:00
README.md Update README.md 2020-05-31 07:38:08 +02:00
SECURITY.md Add SECURITY.md 2020-06-02 09:54:20 +02:00
appveyor.yml Update CI Tools 2020-04-07 14:30:36 +02:00
entitlements.mac.plist Fix Camera permissions for signed Apps 2020-05-26 09:39:41 +02:00
main.js Disable HW accelerated codecs 2020-05-27 10:57:03 +02:00
package-lock.json Bump version 2020-05-27 10:58:33 +02:00
package.json Bump version 2020-05-27 10:58:33 +02:00
screenshot.png Update README 2018-08-14 09:37:08 +02:00
webpack.main.js fix security issue / update deps 2020-04-07 14:30:36 +02:00
webpack.renderer.js fix security issue / update deps 2020-04-07 14:30:36 +02:00

README.md

Jitsi Meet Electron

Desktop application for Jitsi Meet built with Electron.

Features

  • End-to-End Encryption support (BETA)
  • Works with any Jitsi Meet deployment
  • Local settings
  • Builtin auto-updates
  • Remote control
  • Always-On-Top window

Installation

Download our latest release and you're off to the races! The supported platforms are macOS, Windows (both 32 and 64bits) and GNU/Linux (64bits only).

NOTE for old GNU/Linux distributions

You might get the following error:

FATAL:nss_util.cc(632)] NSS_VersionCheck("3.26") failed. NSS >= 3.26 is required.
Please upgrade to the latest NSS, and if you still get this error, contact your
distribution maintainer.

If you do, please install NSS (example for Debian / Ubuntu):

sudo apt-get install libnss3

Homebrew

For MacOS user, you can install the application using the following command:

brew cask install jitsi-meet

Using it with your own Jitsi Meet installation

In order to use this application with your own Jitsi Meet installation it's necessary to enable the External API. Your server must serve a external_api.js file at the root of the installation.

Here is an example using nginx:

location /external_api.js {
    alias /usr/share/jitsi-meet/libs/external_api.min.js;
}

⚠️ The following additional HTTP headers are known to break the Electron App:

Content-Security-Policy "frame-ancestors [looks like any value is bad]";
X-Frame-Options "DENY";

Development

If you want to hack on this project, here is how you do it.

Show building instructions

Installing dependencies

npm install

Starting in development mode

npm start

The debugger tools are available when running in dev mode and can be activated with keyboard shortcuts as defined here https://github.com/sindresorhus/electron-debug#features.

Building the production distribution

npm run dist

Working with jitsi-meet-electron-utils

jitsi-meet-electron-utils is a helper package which implements many features such as remote control and the always-on-top window. If new features are to be added / tested, running with a local version of these utils is very handy, here is how to do that.

By default the jitsi-meet-electron-utils is build from its git repository sources. The default dependency path in package.json is:

"jitsi-meet-electron-utils": "jitsi/jitsi-meet-electron-utils"

To work with local copy you must change the path to:

"jitsi-meet-electron-utils": "file:///Users/name/jitsi-meet-electron-utils-copy",

To build the project you must force it to take the sources as npm update will not do it.

npm install jitsi-meet-electron-utils --force

NOTE: Also check the jitsi-meet-electron-utils README to see how to configure your environment.

License

Apache 2. See the LICENSE file.

Community

Jitsi is built by a large community of developers, if you want to participate, please join community forum.