Set up a development environment for Jitsi Meet Electron
masterTo develop on this project, follow these steps to install dependencies and run the application in development mode.
Prerequisites
- Node.js: Version 22 is required.
Install Dependencies
- Windows: Install build tools globally:
npm install --global --production windows-build-tools - GNU/Linux: Install X11, PNG, and zlib development packages:
sudo apt install libx11-dev zlib1g-dev libpng-dev libxtst-dev - All Platforms: Install project packages:
npm install
Running in Development Mode
Start the application with:
npm startTo automatically display developer tools on startup, use the SHOW_DEV_TOOLS environment variable:
SHOW_DEV_TOOLS=true npm startnpm install
# then
SHOW_DEV_TOOLS=true npm start