/Realtime-Chat

Realtime-Chat with JavaScript: Instant web messaging using technologies like WebSockets for seamless, responsive communication between users and the server.

Primary LanguageJavaScript

NodeJS Server Setup

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