Globe chat is a web chat application built with MERN stack where users can communicate with each other in real-time. Users need to register in the application
in order to access the app and store their progress. User then can login and logout whenever they want. Apart from real-time messaging it also has a feature of file
sharing.
Both should be installed and make sure mongodb is running.
git clone https://github.com/parthkasture/Real-Time-Chat-WebApp.git
cd Real-Time-Chat-WebApp
Now install the required dependencies.
npm install
cd ..
cd public
npm install
To start the servers,
For frontend
cd public
npm run dev
For backend
cd ../server
nodemon index.js
Now open localhost:5173 in browser to start the application.