How to install and run Cesium on Meteor?

i have a cesium project ,now i want it to run on meteor but don’t know how to make it work. anyone have any ideas?

I’m not familiar with Cesium. But with most packages you npm install them and then run them as usual, calling their functions from the client and/or server.

hmmm, I haven’t been able to separate the JS and Html from Cesium to Meteor, it can’t load Cesium :frowning:

function startup(Cesium) {

        'use strict';


   

    //Sandcastle_Begin

    const viewer = new Cesium.Viewer("cesiumContainer");

    //Sandcastle_End

        Sandcastle.finishedLoading();

    }

      );

    if (typeof Cesium !== 'undefined') {

      window.startupCalled = true;

      startup(Cesium);