Skip to content
vic

irislib/iris-messenger

Decentralized messenger

irislib/iris-messenger.json
{
"createdAt": "2020-01-13T20:21:19Z",
"defaultBranch": "master",
"description": "Decentralized messenger",
"fullName": "irislib/iris-messenger",
"homepage": "https://iris.to",
"language": "TypeScript",
"name": "iris-messenger",
"pushedAt": "2024-10-19T08:37:03Z",
"stargazersCount": 724,
"topics": [
"nostr"
],
"updatedAt": "2025-11-26T02:59:39Z",
"url": "https://github.com/irislib/iris-messenger"
}

19-10-2024 NOTE: Current iris.to source code is at https://github.com/irislib/iris-client


git_banner_1200x200

Iris – The app for better social networks

Section titled “Iris – The app for better social networks”

Iris is a Nostr Android, iOS and web client that has also standalone desktop (Windows, MacOS, Linux) and Docker versions.

  • Sign up in seconds: Just type a name and hit “Go”
  • Secure: It’s open source. Users can validate that big brother doesn’t read your private messages.
  • Available: It works offline-first and is not dependent on any single centrally managed server.

Visit Iris FAQ for features, explanations and troubleshooting.

https://user-images.githubusercontent.com/52623440/225862232-7ac9a16a-bf14-4745-ad48-3e3a67bc597e.mp4

Terminal window
git clone https://github.com/irislib/iris-messenger.git
Yarn
Terminal window
# install dependencies
yarn
# serve with hot reload at localhost:8080
yarn dev
# build for production with minification
yarn build
# test the production build locally
yarn serve
# run tests with jest and enzyme
yarn test
npm
Terminal window
# install dependencies
npm i
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# test the production build locally
npm run serve
# run tests with jest and enzyme
npm run test

iris.to production version is in the production branch.

  • Vite — a fast frontend build tool
  • Preact — a fast 3kB alternative to React with the same modern API
  • Tailwind CSS — a CSS framework for rapid UI development. Less custom CSS.
  • DaisyUI — a component library for Tailwind CSS

Alternatively, you can run the dev environment on Docker: docker-compose up. The dev build with autoreload will be available at http://localhost:8080.

With Docker Desktop and GitHub Desktop this is an easy way to get started with development. Just clone this repository and run docker-compose up in a terminal in its directory.

Tauri docs

Yarn
Terminal window
# install dependencies
yarn
# develop
yarn tauri dev
# build
yarn tauri build
npm
Terminal window
# install dependencies
npm i
# develop
npm run tauri dev
# build
npm run tauri build

iris.to production version is in the production branch.

Master branch is deployed to beta.iris.to.

Tauri desktop releases are built from the release branch by GitHub CI.

The application is an unaudited proof-of-concept implementation, so don’t use it for security critical purposes.