npm init
npm install express axios cors
npm install --save-dev nodemon
# Add: "scripts": { "start": "nodemon index.js" },
echo node_modules/ > .gitignore
touch index.js
# Add the code
npm run start
TDMWalpala/Realtime-Chat
Realtime-Chat with JavaScript: Instant web messaging using technologies like WebSockets for seamless, responsive communication between users and the server.
JavaScript