A simple, real-time chatbot built with Node.js, Express, and Socket.IO!
Chat instantly with friends, see who's online, and experience dynamic communication right in your browser.
Perfect for learning about websockets, real-time messaging, and integrating front-end with back-end.
Clone the repository:
git clone https://github.com/your-username/RealTime-Simple-ChatBot.git
cd RealTime-Simple-ChatBotInstall dependencies:
npm install express socket.io nodemonAdd this script to your package.json:
// ...existing code... "scripts": { "devStart": "nodemon server.js" } // ...existing code...
Start the development server:
npm run devStartOpen your browser and go to:
http://localhost:3000/
You're all set!
Connect, send messages, and watch the chat in action.