Signal-Desktop

(β˜… 16,489)

A private messenger for Windows, macOS, and Linux.

Showing a partial file list β€” download the zip above to see everything.

  • .babelrc.mjs
  • .gitattributes
  • .gitignore
  • .mocharc.json
  • .nvmrc
  • .oxlintrc.json
  • .pnpmfile.mjs
  • .prettierignore
  • .prettierrc.mjs
  • .smartling-source-example.sh
  • .smartling.yml
  • .stylelintrc.mjs
  • .yarnclean
  • about.html
  • ACKNOWLEDGMENTS.md
  • background.html
  • call_diagnostic.html
  • ci.js
  • CONTRIBUTING.md
  • dangerfile.mjs
  • DATABASE_SCHEMA.md
  • debug_log.html
  • git-blame-ignored-prettier-revs
  • knip.js
  • LICENSE
  • loading.html
  • package.json
  • package.schema.json
  • permissions_popup.html
  • pnpm-lock.yaml
  • pnpm-workspace.yaml
  • preload.wrapper.ts
  • README.md
  • rolldown.config.ts
  • screenShare.html

# Installation Guide

1. Get the code
git clone https://github.com/signalapp/Signal-Desktop

Downloads the entire project code from GitHub to your computer.

cd Signal-Desktop

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -f reproducible-builds/Dockerfile -t signal-desktop .

Builds a runnable image based on the Dockerfile.

docker run -p 8080:80 signal-desktop

Runs the built image as an actual container.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

3. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
cd danger

This project's files live in a subfolder, so move into it first.

npm install

Downloads and installs the libraries listed in package.json.

npm start

Starts the development/run server.

βœ… After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

4. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
⚠️ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
cd packages/mock-server/certs

This project's files live in a subfolder, so move into it first.

make

Compiles the code based on the generated build configuration to produce an executable.

βœ… If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation