fazlurr
8/1/2016 - 4:31 AM

No cache in Node.js Server - http://stackoverflow.com/a/30453242

No cache in Node.js Server - http://stackoverflow.com/a/30453242

// var app = express()
app.use(function (req, res, next) {
    res.header('Cache-Control', 'private, no-cache, no-store, must-revalidate');
    res.header('Expires', '-1');
    res.header('Pragma', 'no-cache');
    next()
});