Old situation
Previously, I used the following method to force the browser to reload my JavaScript file if there was a new version available.
<script src="common.js?version=1337"></script>
<script src="app.js?version=1337"></script>
My HTML is automatically generated (e.g. with PHP), so this is easy to automate.
New situation
Now I want to use ES6 modules and import my common code. My HTML becomes:
<script src="app.js?version=1337" type="module"></script>
And app.js
contains the import:
import {foo, bar} from './common.js';
Problem
Now my question: how do I influence the caching of common.js
in the new scenario?
I don't want to manually edit app.js
every time I edit common.js
. I also don't want to dynamically generate/pre-process any of my JavaScript files, if possible.
ES6 modules can import PHP files that output valid JS. As long as you also set the proper header you should be OK.
So your
index.php
file would contain:And your
app.js.php
file would contain: