UNPKG

connect-no-cache-headers

Version:
9 lines (8 loc) 249 B
module.exports = function(options) { return function(req, res, next) { res.setHeader("Cache-Control", "no-cache, no-store, must-revalidate"); res.setHeader("Pragma", "no-cache"); res.setHeader("Expires", 0); return next(); }; };