Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 497 Bytes

README.md

File metadata and controls

29 lines (25 loc) · 497 Bytes

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

cd backend
npm init –y
npm i socket.io express cors colors
npm i -D nodemon

Install FrontEnd depencies

cd frontend
npm i node-sass react-redux react-router-dom redux socket.io-client aes256

Run the backend

cd backend
node server.js

Run the frontend

cd frontend
npm start