UNPKG

node-nocache

Version:
14 lines (10 loc) 269 B
(function () { 'use strict'; }()); function nocache (req, res, next) { res.setHeader('Cache-Control', 'no-cache, no-store, must-revalidate'); res.setHeader('Expires', '-1'); res.setHeader('Pragma', 'no-cache'); next(); } module.exports = nocache;