Last active
October 10, 2018 21:16
-
-
Save jkyberneees/fbb68a64002ae4b414bac45c3d877df5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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