I have read that to avoid caching in Node.js, it is necessary to use:
res.header(\'Cache-Control\', \'no-cache, private
You can use nocache Middleware to turn off caching.
npm install --save nocache
Apply the middleware to your app
const nocache = require('nocache'); ... app.use(nocache());
This disables browser caching.