How to disable the Opera 33 cache so it does not cache js scripts?

0

I'm having a lot of problems because in addition to learning to program, I have Opera caching all javascripts and I get in a lot of trouble because every new function I put in the file, you need to give F5 in the script to load the new version of it.

Question: Does anyone have any idea how to disable file caching in Opera or have a workaround to solve this problem?

    
asked by anonymous 11.11.2015 / 14:43

1 answer

3

This is not about caching because the browser is not aware of the modification of the file.

If you want the browser to update with every change in the file, mount a setup with livereload-type tools with Grunt. As you are beginning to learn, setting up these tools may take a little time, but it is quite simple and a necessary time investment if you wanted to continue to tinker with javascript, and a massive amount of tutorials are available, like this for example .

If you're not interested in delving deeper into it now, you can use sites like JS bin , where for every issue of your code, the panel results automatically updates. There are also alternatives like CodePen and JSFiddle .

    
11.11.2015 / 14:58