Skip to content

Build Executables

Termaid uses electron-builder to package the application into platform-specific distributables.

Prerequisites

Before building, make sure the following tools are installed on your system:

PlatformRequired tools
Linuxbuild-essential, python3, make
macOSXcode Command Line Tools (xcode-select --install)
WindowsVisual Studio Build Tools

Linux

bash
npm run dist:linux

Generates .AppImage and .deb packages in the release/ folder.

macOS

bash
npm run dist:mac

Generates a .dmg installer in the release/ folder.

Windows

bash
npm run dist:win

Generates an .exe installer (NSIS) in the release/ folder.

WARNING

Cross-compilation is generally not supported. Build each target on its native platform.

Released under the MIT License.