I have a simple java script single page app using requirejs, underscore, jQuery for serving help material, no server pages. I am new to javascript single page apps, I want to know how to force browser to reload my files on changes?
I am serving my files from amazons3 not with apache or any other server which I can restart. I not asking about crtl+f5 or other commands or apply cache headers, what is the practice for javascript single page apps to reload files?
Single page apps are meant to download all the html, css & javascript files to client side once and javascript updates data from server on user actions and not to download html from server for every request.
When I tried my single page app, it worked fine, when I added some changes to js files I could not see the changes, so how can I configure javascript single page apps to download modified files.