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.
- Host: GitHub
- URL: https://github.com/s4birli/reactsocketapp
- Owner: s4birli
- License: mit
- Created: 2021-08-09T22:33:00.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-09T23:08:21.000Z (almost 5 years ago)
- Last Synced: 2025-04-12T17:54:27.457Z (about 1 year ago)
- Topics: e2e-encryption, nodejs, react, socket-io
- Language: JavaScript
- Homepage:
- Size: 401 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```