Secure, end to end encrypted messaging, voice and video chats. Learn more
You can access the hosted version of Subrosa here: https://subrosa.io/app/
- Clone this repository somewhere safe
- Open src/index.html in your browser (or use a local http server)
Optional: To protect against any undiscovered XSS / code injection attacks, set up your http server to pass a 'Content-Security-Policy' header:
default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self'; connect-src 'self' ws://yourhostname http://yourhostname
Replace yourhostname
.
Subrosa's server is also open source. Run your own network.
- Install nodejs and npm
- Clone subrosa-client
$ npm install
$ npm run-script build
or$ gulp build
if you havegulp
.