Answer by Nasser Torabzade for Node JS, delayed response

browser behavior is different from curl. browser will not render the page, until you call res.end(). so if you want to load a part of a web page after a delay, you need to load that second part separately via a websocket or an ajax request. I recommend using websocets. take a look at socket.io, it's a simple way of using websockets in node.js.

Leave a Reply

Your email address will not be published. Required fields are marked *