SocketStream - Detect when client disconnect from server side

501 Views Asked by At

Is there a way to detect when a client disconnect from the server side?

app.js

ss.event.on("close",function(session){

console.log(client disconnected); });

thanks

1

There are 1 best solutions below

4
On BEST ANSWER

Check these two:

req.on("close", function() {
  // request closed unexpectedly
});

req.on("end", function() {
  // request ended normally
}):