Orb needs a server.

src/orb.js is an ES module, and a file:// document has an opaque origin. Browsers fetch <script type="module"> with CORS, which an opaque origin can never satisfy, so the import is refused before any of this page runs. Nothing in the library can change that.

Any static server from this folder will do:

python -m http.server 8000     # or:  npx serve .