Description
The main contributor for Plunker wrote in the next message that it can be an issue of jsDelivr or Box2D-WASM: plnkr/feedback#597 (comment) So I created the issue for jsDelivr too: jsdelivr/jsdelivr#18510
I try to use the box2d-wasm@7.0.0 ESM link from here: https://www.jsdelivr.com/package/npm/box2d-wasm
It doesn't work on Plunker, and it doesn't work locally on my laptop (I have the same errors, see errors below):
But it works on PlayCode: https://playcode.io/1527756
I uploaded Box2D-WASM files on GitHub Pages:

So it works locally and on Plunker if I use the next link: https://8observer8.github.io/lib/box2d-wasm-7.0.0-box2d-2.4.1/box2d-wasm.min.js You can just replace the jsDelivr link with this one.
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
</head>
<body>
<!-- Since import maps are not yet supported by all browsers, its is
necessary to add the polyfill es-module-shims.js -->
<script async src="https://unpkg.com/es-module-shims@1.7.3/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"box2d-wasm": "https://cdn.jsdelivr.net/npm/box2d-wasm@7.0.0/+esm",
"gl-matrix": "https://cdn.jsdelivr.net/npm/gl-matrix@3.4.3/+esm"
}
}
</script>
<script type="module" src="./js/index.js"></script>
</body>
</html>
index.js
import { box2d, initBox2D } from "./init-box2d.js";
async function init() {
await initBox2D();
const {
b2Vec2
} = box2d;
const vec = new b2Vec2(1, 2);
console.log(`vec = (x: ${vec.x}, y: ${vec.y})`);
}
init();
init-box2d.js
import Box2DLib from "box2d-wasm";
export let box2d = null;
export function initBox2D() {
return new Promise(resolve => {
Box2DLib().then((re) => {
box2d = re;
resolve();
});
});
}
But I have these errors:

Affected jsDelivr links
https://cdn.jsdelivr.net/npm/box2d-wasm@7.0.0/+esm
Description
The main contributor for Plunker wrote in the next message that it can be an issue of jsDelivr or Box2D-WASM: plnkr/feedback#597 (comment) So I created the issue for jsDelivr too: jsdelivr/jsdelivr#18510
I try to use the
box2d-wasm@7.0.0ESM link from here: https://www.jsdelivr.com/package/npm/box2d-wasmIt doesn't work on Plunker, and it doesn't work locally on my laptop (I have the same errors, see errors below):
But it works on PlayCode: https://playcode.io/1527756
I uploaded Box2D-WASM files on GitHub Pages:
So it works locally and on Plunker if I use the next link: https://8observer8.github.io/lib/box2d-wasm-7.0.0-box2d-2.4.1/box2d-wasm.min.js You can just replace the jsDelivr link with this one.
index.html
index.js
init-box2d.js
But I have these errors:
Affected jsDelivr links
https://cdn.jsdelivr.net/npm/box2d-wasm@7.0.0/+esm