Overview
Modules are external libraries that provide additional functionality to your code. They can be loaded by calling the import function. (which returns an async Promise)
let la = await import('/lib/linear-algebra/v1.0.0/linear-algebra.mjs');
This code loads the library located at the '/lib/linear-algebra/v1.0.0/linear-algebra.mjs' URL.