Event: 'request'
function (request, response) { }
Emitted each time there is a request. Note that there may be multiple requests per connection (in the case of keep-alive connections). request
is an instance of http.IncomingMessage
and response
is an instance of http.ServerResponse
.
Please login to continue.