This is a Realtime Chat Application that uses the socket.io library to make a server and client connection where you can chat with your friends globally.
There are two javascript files where one is for server.js, which creates a server where peers will be connected.
And a client.js, where all the functions are performed for the client. Every peer will join, and this client file will run for them.
One peer sends the message will be broadcast to all connected peers.
The socket will create a pipeline where all the connections and any updates from one end will be updated to all connected peers.
Every time you join the server, this will ask you about the name you want to connect with.
So this is all about this project.