I am using express with node.js for a http server. I store the response object so I can stream events down to the client on that channel. Is there a way to detect when the clien
req.on("close", function() { // request closed unexpectedly }); req.on("end", function() { // request ended normally });