Is there a list of UMD NPM packages or snapshot NPM package?

Up until that moment I was using whole snapshot, made my life easier in electron, but now I’m kinda stuck with it, cannot use ES modules, don’t wanna upload whole snapshot on git…

(Technically could use ES6 with import maps I think, but I’m not a fan bunch of imports in each file)

UMD packages I found:

babylonjs": “^7.50.0
@babylonjs/havok”: "^1.3.10

But that’s not all of them it seems, babylon.js does not have BABYLON.SkyMaterial.
(At least that’s where I’m currently stuck, probably gonna go through more errors)

Is there an easier way? Maybe like a whole snapshots as NPM package? :eyes:

Update:
Found answer to half of my question in:

https://doc.babylonjs.com/setup/frameworkPackages/npmSupport

Another half stays - is there no umd package which includes whole thing?

While ES6 import is definitely simpler and better, you may find UMD packages at NPM site searching for ‘babylonjs’ (without ‘@’ in the beginning).
To use BABYLON.SkyMaterial you need to import babylonjs-materials - npm

1 Like