You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to provide a way to use the library without a bundler (webpack or rollup), so people could just import it on, let's say, glitch, and they could work on their projects without that build step.
1. Import maps
The ideal way would be to use import-maps although this is still in early development and we can't expect it to be widely available on browsers anytime soon.
Use a es-module-shims, although is not using the same naming convention and in order to make it work, modules script tags should be using module-shims instead of just `html
Similar to how A-Frame does right now, bundling threejs inside the A-Frame and exposing it as AFRAME.THREE. We could include ECSY and THREE and exposing it in the bundle as well.
The obvious cons is the size of the package, and that we should be using the exposed ecsy and three everywhere instead of importing them again as otherwise we could have some unexpected side effects (as colliding IDs on objects).
We could obviously provide multiple bundles (eg: 3 and 4) and people could use the best that fits their workflow, but I'd love to hear your feedback if you have a preferred/recommended way to go with it
Currently browsers can't resolve third party modules, so if we include a
ecsy-three
bundle in your webapp:You will get an error indicating that
ecsy
andthree
modules are not found, as they are imported on theecsy-three
packageI'd like to provide a way to use the library without a bundler (webpack or rollup), so people could just import it on, let's say, glitch, and they could work on their projects without that build step.
1. Import maps
The ideal way would be to use import-maps although this is still in early development and we can't expect it to be widely available on browsers anytime soon.
2. Import maps via es-module-shims
Use a es-module-shims, although is not using the same naming convention and in order to make it work, modules script tags should be using
module-shims
instead of just `html3. Bundle everything together
Similar to how
A-Frame
does right now, bundlingthreejs
inside the A-Frame and exposing it asAFRAME.THREE
. We could includeECSY
andTHREE
and exposing it in the bundle as well.The obvious cons is the size of the package, and that we should be using the exposed
ecsy
andthree
everywhere instead of importing them again as otherwise we could have some unexpected side effects (as colliding IDs on objects).4. Replace third-party import with https://unpkg
Create a special bundle where all the external dependencies are being replaced with its
unpkg
url, so the browser will resolve them just fine:will turn into:
5. Use snowpack (previously pika/web)
Snowpack will extract the packages from
node_modules
and create aweb_modules
folder that will be used to resolve the imports.The text was updated successfully, but these errors were encountered: