Chit-Chat is a Full Stack Chatting App. Used Socket.io for real time communication and stores user details in encrypted format in MongoDB Database.
- User registration and login
- User authentication measures storing passwords in encrypted form
- Discover and initiate personal as well as group chats
- Add and remove users from a group chat
- Fully responsive
- Backend :
Node.js, Express.js, Socket.io - Frontend :
React.js, CSS - Database:
MongoDB
Clone the GitHub Repository
https://github.com/harshchoudhary21/ChitChat.gitGo to the project directory
cd Chat-AppInstall dependencies
npm install cd frontend
npm installSetup .env file
PORT=
MONGO_URI=
JWT_SECRET=Start the server
npm startStart the Client
cd frontend
npm start