A chat app developed on Node.js in which the users who join the same room can send messages to each other. But it does not uses any databases to store the information.
To get this project just clone it using gitbash by using following command
git clone https://github.com/Justabhi96/node-chat-app.git
or you can also download the zip version of this project.
You should must have node installed on your machine in order to run this app. You can download from https://nodejs.org/en/download/
To get the app running you should run the following commands in the terminal of your machine from this project folder,
Installing the dependencies
npm install
Running the app
node server/server.js
You can see the running project on localhost:5000 in your browser.
- Node - The Javascript runtime
- Express - The Web Framework used
- Socket.io - For real-time bidirectional event-based communication.
- Abhishek Kushwaha - Initial work - Justabhi96