A self hosted chat application with end-to-end encrypted messaging.
Go to file
Rohan Sircar 1a7edaca3c Browserified chat web worker
This was done because previously, the worker used importscript
to load deps from a CDN, which was vulnerable to attacks like XSS
because it does not support SRI.
The web worker also cannot access deps from the global head.
2020-05-29 15:20:27 +05:30
chatto Browserified chat web worker 2020-05-29 15:20:27 +05:30
config Test using Optional in repository 2020-05-27 17:40:00 +05:30
License.md Added license (AGPLv3) 2020-05-16 10:16:40 +00:00
Readme.md Update 'Readme.md' 2020-05-27 09:25:15 +00:00

Chatto

A self hosted chat application with end-to-end encrypted messaging.

The backend is written in Java, and uses Spring Boot. The app itself provides a front end written with thymeleaf templates. The chat AJAX logic is written in TypeScript without any JS framework. The app exposes a JSON API that the inbuilt front end uses to provide chat functionality. However, this API can also be used by a separate client app to provide the same functions.

A WIP client made in ScalaFX is available here. It is a complete rewrite in Scala of the previous client, which was also written using Java and Spring Boot.