Skip to content

This repository contains a fully functional private chat application using MongoDB, Socket.io and Express that supports real-time chatting and also allows to retrieve chat when logged in later

neelabhsinha/Private-Chat-Application-using-MongoDB-and-Socket.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Private-Chat-Application-using-MongoDB-and-Socket.io

This repository contains a fully functional private chat application using MongoDB, Socket.io and Express that supports real-time chatting and also allows to retrieve chat when logged in later.

Tech-stack -

  • HTML, CSS (for front-end interface)
  • JavaScript (both front-end behaviour and in the back-end)
  • Node.js and Express.js (for back-end server)
  • Socket.io (for real-time interaction between the client and the server)
  • MongoDB (as database to store chats, online users etc.)

Features of this app -

  • The app contains real-time chat between two private users
  • The chat history can be retirieved later when the chat is accessed by the user
  • The chat between two people will not be broadcasted to other users online
  • If an active user sends a message to another user while he is offline, the other user will be able to retirieve message later when he accesses the chat

Usage Guide -

  1. Install Node.js and MongoDB on your system. Check using the following commands in the terminal -
$ node -v
$ mongod --version
  1. Open your terminal and run the following -
$ git clone https://github.com/neelabhsinha/Private-Chat-Application-using-MongoDB-and-Socket.io/
$ cd Private-Chat-Application-using-MongoDB-and-Socket.io
$ npm install
$ node server.js
  1. Now, the server is running, open the link http://localhost:5000/chat.html to access the chat interface

  2. Type your name and the 2nd person name and press done to establish a connection. You will see the entire chat history retrieved between the two people.

  3. Open the same URL in another browser/tab and establish the other half of the connection

  4. Send messages from any end to see the functioning

  5. Close when you have to exit the chat

Feel free to try different cases, like when one user is offline, when both users are online but one of them is chatting with other person, etc.

Functionality -

  • When a user logs in, his'her record is maintained in online users collection, and the entire chat history is retrived from the database and displayed using socket.io
  • When he sends messages, it's checked if the recipient is online or not. If yes, message is sent to him. If not, nothing happens. In both the cases, message is stored in database for later access
  • When a user disconnects, he'she is removed from online users database

About

This repository contains a fully functional private chat application using MongoDB, Socket.io and Express that supports real-time chatting and also allows to retrieve chat when logged in later

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published