Adds the X-Response-Time header displaying the responseduration in milliseconds.
X-Response-Time
module.exports = function responseTime(){ return function(req, res, next){ var start = new Date; if (res._responseTime) return next(); res._responseTime = true; res.on('header', function(header){ var duration = new Date - start; res.setHeader('X-Response-Time', duration + 'ms'); }); next(); }; };
Reponse time
Adds the
X-Response-Timeheader displaying the responseduration in milliseconds.
Source