Javascript – Server updates does not reflect the client browser?
Why server updates doesn't reflect on client browser, Maybe an attribute value should be changed ?, something related to caching ? app.get('/hello' , (_ , res) => { res.header({ 'Cache-Control': 'no-cache' }); res.json('HelloWorld'); }); that should help but it didn't…