I always think that optimization is as important as the feature itself. I saw developers ignoring this stage of development and ending up rewriting the whole code. We should give equal importance to optimization as we give it to the feature. Node.JS is best suited for data-intensive applications due to its lightweight IO operations. What […]
Demystifying complex messaging applications using WebSocket!
Have you ever tried to create chat applications? Whenever you want bidirectional communication(server to client and client to server), WebSocket is the new-age solution. But setting up WebSocket in an efficient way is still a key. You may find various articles over this which makes set-up easy, but I think it is inefficient and also […]