Threema-web, clone of the official github repo from 12.2020

Danilo Bargen 4388e93c1d Release v1.0.1 hace 8 años
.licenses 4388e93c1d Release v1.0.1 hace 8 años
dist 4388e93c1d Release v1.0.1 hace 8 años
docs 4388e93c1d Release v1.0.1 hace 8 años
public 4388e93c1d Release v1.0.1 hace 8 años
src 4388e93c1d Release v1.0.1 hace 8 años
tests 4388e93c1d Release v1.0.1 hace 8 años
.editorconfig 4388e93c1d Release v1.0.1 hace 8 años
.gitignore 4388e93c1d Release v1.0.1 hace 8 años
CHANGELOG.md 4388e93c1d Release v1.0.1 hace 8 años
LICENSE-3RD-PARTY.txt 4388e93c1d Release v1.0.1 hace 8 años
LICENSE.txt 4388e93c1d Release v1.0.1 hace 8 años
README.md 4388e93c1d Release v1.0.1 hace 8 años
RELEASING.md 4388e93c1d Release v1.0.1 hace 8 años
gather-licenses.sh 4388e93c1d Release v1.0.1 hace 8 años
header.js 4388e93c1d Release v1.0.1 hace 8 años
index.html 4388e93c1d Release v1.0.1 hace 8 años
karma.conf.js 4388e93c1d Release v1.0.1 hace 8 años
npm-shrinkwrap.json 4388e93c1d Release v1.0.1 hace 8 años
package.json 4388e93c1d Release v1.0.1 hace 8 años
tsconfig.json 4388e93c1d Release v1.0.1 hace 8 años
tslint.json 4388e93c1d Release v1.0.1 hace 8 años

README.md

Threema Web

Threema Web is a web client for Threema. With Threema Web, you can use Threema on your Desktop without compromising security.

Screenshot

Threema Web establishes a direct connection between Desktop and mobile device using WebRTC. Signaling is end-to-end encrypted with SaltyRTC. If both devices are in the same network, no server is involved when synchronizing messages between the devices, and the digital footprint is reduced to the bare minimum.

For more information, see the Threema Web Whitepaper.

Development

Threema Web is written using TypeScript and AngularJS 1. Dependencies are managed with npm.

Install development dependencies:

npm install

Run the dev server:

npm run serve:live

Then open the URL in your browser:

chromium http://localhost:9966

Testing

To run tests:

npm run build
chromium tests/testsuite.html

To run linting checks:

npm run lint

You can also install a pre-push hook to do the linting:

echo -e '#!/bin/sh\nnpm run lint' > .git/hooks/pre-push
chmod +x .git/hooks/pre-push

Configuration

The configuration of Threema Web can be tweaked in src/config.ts:

General

  • SELF_HOSTED: Set this to true if this instance of Threema Web isn't being hosted on web.threema.ch.

SaltyRTC

  • SALTYRTC_HOST: Set this to the hostname of the SaltyRTC server that you want to use. If set to null, the hostname will be constructed based on the SALTYRTC_HOST_PREFIX and the SALTYRTC_HOST_SUFFIX values.
  • SALTYRTC_PORT: The port of the SaltyRTC server to be used.
  • SALTYRTC_SERVER_KEY: The public permanent key of the SaltyRTC server. Set this value to null if your server does not provide a public permanent key, or if you don't want to verify it.

ICE

  • SALTYRTC_STUN: Configuration object for the WebRTC STUN server.
  • SALTYRTC_TURN: Configuration object for the WebRTC TURN server.

Push

  • PUSH_URL: The server URL used to deliver push notifications to the app.

Self Hosting

For instructions on how to host your own version of Threema Web, please refer to docs/self_hosting.md.

Contributing

Contributions to Threema Web are welcome! Please open a pull request with your proposed changes.

Security

Every Threema Web release will be tagged. The git tags are cryptographically signed using the following PGP key:

pub   rsa4096 2016-09-06 [SC] [expires: 2026-09-04]
      E7AD D991 4E26 0E8B 35DF  B506 65FD E935 573A CDA6
uid           Threema Signing Key <dev@threema.ch>

If you discover a security issue in the Threema Web, please follow responsible disclosure and report it directly to security@threema.ch instead of opening an issue on Github.

pub   rsa4096 2017-02-08 [SC] [expires: 2022-02-07]
      677E 0E97 1669 53B3 2620  D95C 71B9 C6BA C55A 9855
uid           Threema Security <security@threema.ch>

You can find both public keys and their proofs on keybase.

License

Threema Web.

Copyright © 2016-2017 Threema GmbH (https://threema.ch/).

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.