(Disclaimer: very limited knowledge about WASM)<p>Curious as to how WASM impacts browser caching?<p>In the JS scenario, several modules will be cached and change in one may still allow usage of other cached modules, thereby reducing future load times.<p>How will that work in WASM work, since I'm assuming that the entire app will be packaged at build time as a single binary. Is the assumption even correct?<p>Or, is it simply a question of architecting your app well into several WASM modules, since I'm assuming WASM modules (or whatever they are called) can call each other and do lazy loading.