An open API service indexing awesome lists of open source software.

https://github.com/s4birli/reactsocketapp

This is real time chat app using React and Socket IO with E2E Encryption.
https://github.com/s4birli/reactsocketapp

e2e-encryption nodejs react socket-io

Last synced: about 2 months ago
JSON representation

This is real time chat app using React and Socket IO with E2E Encryption.

Awesome Lists containing this project

README

          

# ReactSocketApp
This is real time chat app using React and Socket IO with E2E Encryption.

** Please Do not forget to install node **

Install BackEnd depencies
```console
cd backend
npm init –y
npm i socket.io express cors colors
npm i -D nodemon
```

Install FrontEnd depencies
```console
cd frontend
npm i node-sass react-redux react-router-dom redux socket.io-client aes256
```

Run the backend
```console
cd backend
node server.js
```
Run the frontend
```console
cd frontend
npm start
```