Skip to content

Instantly share code, notes, and snippets.

@jkyberneees
Last active October 10, 2018 21:16
Show Gist options
  • Select an option

  • Save jkyberneees/fbb68a64002ae4b414bac45c3d877df5 to your computer and use it in GitHub Desktop.

Select an option

Save jkyberneees/fbb68a64002ae4b414bac45c3d877df5 to your computer and use it in GitHub Desktop.
service.use((req, res, next) => {
const now = new Date().getTime()
res.on('response', (e) => {
e.res.setHeader('x-response-time', new Date().getTime() - now)
})
return next()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment