Skip to content

Instantly share code, notes, and snippets.

@twitchard
Created June 8, 2017 04:44
Show Gist options
  • Select an option

  • Save twitchard/7291600c18eaaf3b2ed983f0892583a8 to your computer and use it in GitHub Desktop.

Select an option

Save twitchard/7291600c18eaaf3b2ed983f0892583a8 to your computer and use it in GitHub Desktop.
Middleware that logs a request
app.use((req, res, next) => {
const begin = Date.now()
res.on('finish', () => console.log(
"method", req.method,
"url", req.url,
"took", Date.now() - begin
))
return next()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment