https://github.com/nullvoxpopuli/tanquereact
p2p encrypted React-based Chat
https://github.com/nullvoxpopuli/tanquereact
chat docker encryption nacl p2p phoenix react redux relays
Last synced: about 1 year ago
JSON representation
p2p encrypted React-based Chat
- Host: GitHub
- URL: https://github.com/nullvoxpopuli/tanquereact
- Owner: NullVoxPopuli
- License: mit
- Created: 2016-07-05T17:27:12.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T10:15:40.000Z (about 8 years ago)
- Last Synced: 2025-04-23T15:25:17.851Z (about 1 year ago)
- Topics: chat, docker, encryption, nacl, p2p, phoenix, react, redux, relays
- Language: JavaScript
- Homepage: https://nullvoxpopuli.github.io/tanqueReact/
- Size: 6.44 MB
- Stars: 8
- Watchers: 2
- Forks: 4
- Open Issues: 79
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tanqueRéact
[](https://travis-ci.org/NullVoxPopuli/tanqueReact)
[](https://codeclimate.com/github/NullVoxPopuli/tanqueReact)
tanqueRéact is a p2p* encrypted chat client. Only the intended recipient(s) may read what you send (messages, images, etc)

\* this isn't actually p2p, as there are servers involved, but it's designed to not be reliant on one server, but to utilize redundancy. The server, or 'relays', are [open sourced here](https://github.com/NullVoxPopuli/mesh-relay-phoenix).
The servers only relay messages, and can't decrypt anything.
## [Live Site](https://nullvoxpopuli.github.io/tanqueReact/)
The only storage is local storage, so your information is never shared with anyone.
### Initial Setup
```bash
docker-compose build
```
### Running
```bash
./run
```
## Linting
Since all the packages are managed in docker's environment, you'll need to install the linter packages on your system.
```bash
# lazy install everything technique - also helpful for IDE's ESLint
yarn install --pure-lockfile
```
node_modules is already in the gitignore.
note that node_modules is not required to exist, as the app makes use of the in-docker node_modules.
The host node version should match the docker version -- so nvm is recommended.
## Testing
```bash
./run npm run test:watch # or just test (for C.I.)
```
## Dependencies
[Yarn](https://yarnpkg.com/en/), rather than npm.
- Caching for faster dev.
```bash
./run yarn add dep-name --dev
docker-compose build
```
### Installing
```bash
./run yarn install --flat
```
forces only having one copy of a dependency.
### Check Info (e.g.: looking for bins)
```bash
./run yarn info webpack
```