Top Related Projects
Berty is a secure peer-to-peer messaging app that works with or without internet access, cellular data or trust in the network
A glossy Matrix collaboration client for desktop.
A private messenger for Windows, macOS, and Linux.
:computer: Wire for desktop
The communications platform that puts data protection first.
Mattermost Desktop application for Windows, Mac and Linux
Quick Overview
DeltaChat Desktop is an open-source, cross-platform desktop application for the Delta Chat messaging system. It provides a user-friendly interface for secure, decentralized communication using email protocols, offering end-to-end encryption and independence from traditional messaging platforms.
Pros
- Decentralized and privacy-focused, using existing email infrastructure
- Cross-platform support (Windows, macOS, Linux)
- End-to-end encryption for secure communication
- Open-source, allowing for community contributions and audits
Cons
- Requires an email account to use
- May have a learning curve for users accustomed to traditional messaging apps
- Smaller user base compared to mainstream messaging platforms
- Dependent on email providers' reliability and spam filtering
Getting Started
To get started with DeltaChat Desktop:
- Visit the releases page on GitHub.
- Download the appropriate installer for your operating system.
- Install the application following the standard installation process for your OS.
- Launch DeltaChat Desktop and follow the in-app instructions to set up your account using an existing email address.
Note: DeltaChat Desktop is not a code library, so code examples and quick start instructions for developers are not applicable in this case.
Competitor Comparisons
Berty is a secure peer-to-peer messaging app that works with or without internet access, cellular data or trust in the network
Pros of Berty
- Fully decentralized and peer-to-peer, offering enhanced privacy and censorship resistance
- Supports offline messaging through a distributed network
- Implements advanced cryptographic protocols for secure communication
Cons of Berty
- Still in development, with potential stability issues
- Smaller user base compared to DeltaChat, which may limit adoption
- More complex setup and configuration process
Code Comparison
DeltaChat (JavaScript):
const DeltaChat = require('deltachat-node')
const dc = new DeltaChat()
dc.createAccount(config)
dc.startIO()
Berty (Go):
import "berty.tech/berty/v2/go/pkg/bertyprotocol"
client, err := bertyprotocol.New(opts)
if err != nil {
return err
}
Both projects aim to provide secure messaging solutions, but they differ in their approach. DeltaChat builds upon existing email infrastructure, making it easier to adopt and use with existing accounts. Berty, on the other hand, focuses on creating a fully decentralized network, prioritizing privacy and censorship resistance.
DeltaChat offers a more stable and mature platform, with a larger user base and easier setup process. Berty provides advanced features like offline messaging and stronger privacy guarantees but is still in active development and may have a steeper learning curve for users.
A glossy Matrix collaboration client for desktop.
Pros of Element Desktop
- More active development with frequent updates and contributions
- Supports end-to-end encryption for enhanced security
- Offers a wider range of features, including voice and video calls
Cons of Element Desktop
- Larger codebase, potentially more complex to maintain
- Higher resource usage due to additional features
- Steeper learning curve for new users
Code Comparison
Element Desktop (TypeScript):
export async function getUpdateInfo(): Promise<UpdateInfo> {
const targetUrl = getTargetUrl();
const requestResult = await needle('get', targetUrl, updateCheckHeaders);
if (requestResult.statusCode !== 200) {
throw new Error(`Update check failed ${requestResult.statusCode}`);
}
return JSON.parse(requestResult.body);
}
DeltaChat Desktop (JavaScript):
function getConfigFor(key) {
return new Promise((resolve, reject) => {
ipcRenderer.once('success-get-config', (e, value) => resolve(value))
ipcRenderer.once('error-get-config', (e, err) => reject(err))
ipcRenderer.send('get-config', key)
})
}
Both projects use Electron for cross-platform desktop application development. Element Desktop has a more extensive feature set and active community, while DeltaChat Desktop focuses on simplicity and ease of use. Element Desktop's codebase is larger and more complex, potentially requiring more resources, while DeltaChat Desktop aims for a lightweight approach.
A private messenger for Windows, macOS, and Linux.
Pros of Signal-Desktop
- More established and widely adopted secure messaging platform
- End-to-end encryption for all communications by default
- Regular security audits and updates
Cons of Signal-Desktop
- Requires phone number for registration, potentially compromising anonymity
- Centralized server architecture, less resilient to censorship
- Limited customization options for users
Code Comparison
Signal-Desktop (TypeScript):
async function sendMessage(message: string): Promise<void> {
const encrypted = await encryptMessage(message);
await sendToServer(encrypted);
}
DeltaChat-Desktop (JavaScript):
async function sendMessage(message) {
const encrypted = await dc.encryptMessage(message);
await dc.sendToRecipient(encrypted);
}
Both projects use similar approaches for sending encrypted messages, with Signal-Desktop using TypeScript for stronger typing. DeltaChat-Desktop relies on a dc
object, likely representing the DeltaChat core library, while Signal-Desktop's implementation suggests a more modular approach with separate encryptMessage
and sendToServer
functions.
DeltaChat-Desktop offers a decentralized, email-based messaging solution, providing greater privacy and flexibility. However, Signal-Desktop benefits from a larger user base and more frequent updates. Both projects prioritize security and encryption, making them solid choices for privacy-conscious users.
:computer: Wire for desktop
Pros of Wire Desktop
- More active development with frequent updates and releases
- Larger community and user base, potentially leading to better support
- Comprehensive end-to-end encryption for all communication types (messages, calls, file sharing)
Cons of Wire Desktop
- Closed-source backend, limiting full transparency and auditability
- Requires account creation and phone number/email for registration
- More complex architecture, potentially leading to a larger attack surface
Code Comparison
Wire Desktop:
const env = process.env.NODE_ENV || 'production';
const isDevelopment = env === 'development';
const isProduction = env === 'production';
Delta Chat Desktop:
const env = process.env.NODE_ENV || 'production'
const isDevelopment = env === 'development'
const isProduction = !isDevelopment
Both projects use similar environment variable checks, but Wire Desktop's approach is more explicit in defining production mode.
Summary
Wire Desktop offers a more polished and feature-rich experience with active development and a larger user base. However, Delta Chat Desktop provides a more privacy-focused approach with its decentralized, email-based architecture and fully open-source codebase. The choice between the two depends on the user's priorities regarding features, privacy, and ecosystem integration.
The communications platform that puts data protection first.
Pros of Rocket.Chat
- More feature-rich, offering a wide range of collaboration tools
- Supports multiple deployment options (cloud, self-hosted, mobile)
- Larger community and more frequent updates
Cons of Rocket.Chat
- More complex setup and maintenance
- Higher resource requirements for self-hosting
- Steeper learning curve for administrators
Code Comparison
DeltaChat-Desktop (JavaScript):
const DeltaChat = require('deltachat-node')
const dc = new DeltaChat()
dc.createAccount(config)
Rocket.Chat (JavaScript):
import { Meteor } from 'meteor/meteor'
import { RocketChat } from 'meteor/rocketchat:lib'
Meteor.startup(() => {
RocketChat.settings.init()
})
DeltaChat-Desktop focuses on simplicity and privacy, using a decentralized approach based on email protocols. It's lightweight and easy to set up but has fewer features compared to Rocket.Chat.
Rocket.Chat is a comprehensive team communication platform with a wide range of features, including video conferencing, file sharing, and integrations. It's more suitable for large organizations but requires more resources and technical expertise to manage.
Both projects are open-source and actively maintained, but Rocket.Chat has a larger community and more frequent updates. DeltaChat-Desktop is ideal for users prioritizing privacy and simplicity, while Rocket.Chat is better for teams needing a full-featured collaboration platform.
Mattermost Desktop application for Windows, Mac and Linux
Pros of Mattermost Desktop
- More active development with frequent updates and releases
- Larger community and user base, leading to better support and resources
- Extensive integration capabilities with other tools and services
Cons of Mattermost Desktop
- Heavier resource usage compared to DeltaChat Desktop
- Less focus on privacy and end-to-end encryption
- Requires a Mattermost server, limiting standalone usage
Code Comparison
DeltaChat Desktop (React):
const ChatListItem = ({ chat, onClick }) => (
<li onClick={() => onClick(chat.id)}>
<img src={chat.profileImage} alt={chat.name} />
<span>{chat.name}</span>
</li>
);
Mattermost Desktop (React):
const ChannelItem = ({ channel, onSelect }) => (
<div onClick={() => onSelect(channel.id)} className="channel-item">
<ChannelIcon type={channel.type} />
<span>{channel.display_name}</span>
<UnreadBadge count={channel.unread_count} />
</div>
);
Both projects use React for their UI components, but Mattermost Desktop tends to have more complex components with additional features like unread badges and channel icons. DeltaChat Desktop's components are generally simpler, focusing on core functionality.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Delta Chat Desktop
Desktop Application for delta.chat

Editions
Electron :electron: | Tauri | Browser ð¦ð§ð |
---|---|---|
![]() | ![]() | ![]() |
The default application. Based on Electron. Currently deployed in appstore and used by most users. | WIP client using Tauri instead of Electron. Tauri is a modern alternative to Electron: Less disk usage, less ram usage and better performance rust backend. | Highly experimental version with a webserver component and web-ui in the browser. At the moment only meant for developers and automated testing. |
Project Folder Download Links | Project Folder Fediverse Thread Delta Tauri - nlnet project | Project Folder Fediverse Thread |
Documentation Links
For Users
For Developers
- Contribution Guidelines
- Logging
- Documentation for Developers
- Styling Guidelines
- How to update core
- How to do end to end testing
- How to do a release
Table of Contents
Click to expand
Install
The application can be downloaded from https://get.delta.chat.
Here you'll find binary releases for all supported platforms.
See below for platform specific instructions. If you run into any
problems please consult the Troubleshooting
section below.
Linux
Flatpak
The primary distribution-independent way to install is to use the
flatpak build.
This is maintained in its own
repository. However, a
pre-built binary can be downloaded and installed from
Flathub
which
also has a setup guide for many Linux platforms.
Arch Linux
Run pacman -S deltachat-desktop
to install Delta Chat Desktop on Arch Linux.
Alternatively, build deltachat-desktop-git
package from Arch User Repository.
WARNING: Currently the AUR package compiles from latest master. This can be more recent as the latest release, introduce new features but also new bugs.
If you have a AUR helper like yay or paru installed, you can install it
by running yay -S deltachat-desktop-git
and following the instruction
in your terminal.
Otherwise you can still do it manually:
Show manual steps
# Download the latest snapshot of the PKGBUILD
wget https://aur.archlinux.org/cgit/aur.git/snapshot/deltachat-desktop-git.tar.gz
# extract the archive and rm the archive file afterwards
tar xzfv deltachat-desktop-git.tar.gz && rm deltachat-desktop-git.tar.gz
# cd into extracted folder
cd deltachat-desktop-git
# build package
makepkg -si
# install package (you need to replace <version> with whatever version makepkg built)
sudo pacman -U deltachat-desktop-git-<version>.tar.xz
Mac OS
Homebrew
$ brew install --cask deltachat
DMG
Simply install the .dmg
file as you do it with all other software on Mac.
Windows
You can find the downloads for windows on https://get.delta.chat. However, we recommend using the release from Microsoft Store, because there you get automatic updates.
From Source
â This is mostly for development purposes, this won't install/integrate deltachat into your system. So unless you know what you are doing, we recommend to stick to the methods above if possible.
# Get the code
$ git clone https://github.com/deltachat/deltachat-desktop.git
$ cd deltachat-desktop
# Install pnpm
$ npm i -g pnpm
# Install dependencies
$ pnpm install
# Build the app (only needed on the first time or if the code was changed)
$ pnpm -w build:electron
# Start the application:
$ pnpm -w start:electron
-w
means workspace root package, with this you don't need to have your current working directory at the repo-root to run those scripts.
For development with local deltachat core
read docs/UPDATE_CORE.md
.
Troubleshooting
- This module builds on top of
deltachat core
, which in turn has external dependencies. The instructions below assume a Linux system (e.g. Ubuntu 18.10). - Read the error, maybe it already tells you what you need to do. If not feel free to file an issue in this github repo.
- Make sure that your nodejs version is
20.0.0
or newer. - If you still get errors look at the instructions in
docs/UPDATE_CORE.md
to set things up or write an issue.
Configuration and Databases
The configuration files and database are stored at application-config's default file paths.
Each database is a SQLite file that represents the account for a given email address.
How to Contribute
- Read
docs/DEVELOPMENT.md
- For translations see our transifex page: https://www.transifex.com/delta-chat/public/
- For other ways to contribute: https://delta.chat/en/contribute
Logging
You can access the log folder and the current log file under the View->Developer
menu:

For more details on how the logging system works, read docs/LOGGING.md
.
License
Licensed under GPL-3.0-or-later
, see LICENSE
file for details.
Copyright © DeltaChat contributors.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Top Related Projects
Berty is a secure peer-to-peer messaging app that works with or without internet access, cellular data or trust in the network
A glossy Matrix collaboration client for desktop.
A private messenger for Windows, macOS, and Linux.
:computer: Wire for desktop
The communications platform that puts data protection first.
Mattermost Desktop application for Windows, Mac and Linux
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot