Creating Real-Time Chat with Node.js and Socket.IO
The way that people use internet evolved from static pages to Ajax and now to realtime web supported by standards like WebSockets and WebRTC. Making a real-time application, like chat, became increadibly easy with the help of platforms like Node.js and libraries like Socket.io.
In this post we'll see how to create a minimalistic chat application form the scratch.
Create a separate folder for your new project and type `npm init` in it. Then, install the required dependencies.
- Read more about Creating Real-Time Chat with Node.js and Socket.IO
- 1 comment
- Log in or register to post comments
- 432 views