A secure, private, and decentralized chat app built on Nostr, using the MLS protocol under the hood.
White Noise aims to be the most secure private chat app on Nostr, with a focus on privacy and security. Under the hood, it uses the Messaging Layer Security (MLS) protocol to manage group communications in a highly secure way. Nostr is used as the transport protocol and as the framework for the ongoing conversation in each chat.
White Noise is an implemenetation of the NIP-104 spec. This is still a draft spec, so it may change before it is finalized.
To build the app in release mode for desktop, run bun tauri build
.
- On MacOS, running
bun tauri build
will create both a.app
bundle and a.dmg
installer. Install the.dmg
in the same way you would install any other MacOS application. - To update the app, run
git pull
andbun tauri build
again. The app very much alpha so expect that updates will break your groups and chats. If you end up in an unrecoverable state, you can try deleting the~/Library/Application Support/chat.whitenoise.dev
directory and running the app again. When you delete that directory, you're deleting all the MLS group state so you'll need to re-create or re-join the groups you had before and your previous history will be lost.
- I haven't tried the app on Linux yet. Let me know how it goes!
- I haven't tried the app on Windows yet. Let me know how it goes!
- To build the app on Android, it's easiest to run
bun tauri android build --apk --split-per-abi
. This will generate a number of APKs, one for each architecture. You can then install the one that matches your phone.
- Right now, you can't build for iOS.
White Noise is built with Tauri & SvelteKit. To get started contributing you'll need to have the Rust toolchain installed and the Bun JavaScript package manager.
- First off, you'll need to install
nostr-rs-relay
and run it locally when developing. At the moment, to simplify development everything happens over a local relay onws://localhost:8080
. - Clone the repo:
git clone https://github.com/erskingardner/whitenoise.git
andcd whitenoise
. - Run
bun install
to install the front-end dependencies. - Run
bun tauri dev
to start the app. If you want to see more comprehensive logging, runRUST_LOG=debug bun tauri dev
.
White Noise is free and open source software, released under the Gnu AGPL v3 license. See the LICENSE file for details.