WebSockets and Server-Sent Events with Node.js and Express
Differences, advantages and disadvantages in two easy ways of streaming data from a server

Normally a web page requests data from a server. But sometimes it is needed that the server keeps sending data to a browser whenever it has something to send and not only when when the browser makes a request. For…