iris-messenger/README.md

35 lines
1.8 KiB
Markdown
Raw Normal View History

2020-01-30 16:42:36 +00:00
# Iris Messenger
Iris Messenger is like the messaging apps we've used to, but better.
* No phone number or signup required. Just start using it!
* Secure: It's open source. Users can validate that big brother doesn't read your messages.
* Available: It works offline-first and is not dependent on any single centrally managed server. Users can even connect directly to each other.
2020-01-14 08:41:30 +00:00
2020-01-30 16:42:36 +00:00
## Use
Browser application: [iris.to](https://iris.to)
2020-01-14 08:41:30 +00:00
2020-01-30 16:42:36 +00:00
Desktop version: ([download](https://github.com/irislib/iris-electron/releases), [source code](https://github.com/irislib/iris-electron)):
2020-01-30 11:10:53 +00:00
* Communicate and synchronize with local network peers without Internet access
* When local peers eventually connect to the Internet, your messages are relayed globally
* Bluetooth support upcoming
2020-01-30 10:21:43 +00:00
* Opens to background on login: stay online and get message notifications!
* More secure and available: no need to open the browser application from a server.
2020-01-14 08:41:30 +00:00
## Develop
```
git clone git@github.com:irislib/iris-messenger.git
cd iris-messenger
yarn
yarn start
```
2020-01-30 11:10:53 +00:00
2020-01-30 16:42:36 +00:00
The stack is just [iris-lib](https://github.com/irislib/iris-lib), [gun](https://github.com/amark/gun), jquery and some helpers.
2020-01-30 11:10:53 +00:00
## Privacy
2020-01-30 16:42:36 +00:00
Messages are end-to-end encrypted, but message timestamps and the number of chats aren't. In a decentralized network this information is potentially available to anyone.
2020-01-30 11:10:53 +00:00
By looking at timestamps in chats, it is possible to guess who are chatting with each other. It is also possible, if not trivial, to find out who are communicating with each other by monitoring data subscriptions on the decentralized database.
In that regard, Iris prioritizes decentralization and availability over perfect privacy.
Profile names, photos and online status are currently public. That can be changed when advanced group permissions are developed.