Created
June 8, 2017 04:44
-
-
Save twitchard/7291600c18eaaf3b2ed983f0892583a8 to your computer and use it in GitHub Desktop.
Middleware that logs a request
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
| 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