I have an express app. I am using swig as the template engine. Is it possible to reflect my HTML changes in the browser when I click refresh. I don\'t want to restart the s
You can simply disable swig's caching:
if (process.env.NODE_ENV !== 'production') { swig.setDefaults({ cache: false }); }