How to run Cesium in a headless environment ?

Hello Folks,

As you all know, Cesium uses WEBGL, essentially requiring a web-browser to render the Maptiles. In the app that I am developing, I require Cesium to run in VPS headless environment - that is outside a browser. Is there a way I could do so?

Thanks

Yashvin

I have used cesium in node.js command line tools by simply `require()`ing it:
const Cesium = require('cesium');
[...]