UNPKG
midnight
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Web framework for building modern web applications
github.com/msavela/midnight
msavela/midnight
midnight
/
lib
/
middleware
/
logger.js
6 lines
(5 loc)
•
156 B
JavaScript
View Raw
1
2
3
4
5
6
module
.
exports
=
(
req, res, next
) =>
{
const
started =
new
Date
();
next
(); req.
app
.
log
.
info
(
`
${
new
Date
() - started}
ms
${req.method}
${req.url}
`
); };