Is it possible to write a middleware which executes after the response is sent to a client or after the request is processed and called just before sending the response to clien
See if binding to req.on('end', function() {...}); will work for you.
req.on('end', function() {...});