Which header(s) can I use to prevent any caching on the part of the browser?
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
would it simply be:
res.setHeader('cache-control','no-cache');
Cache-Control: no-store is sufficient.