I’m trying to find a method of using cesium without the requirement of node.js or an apache server, is there any known method to do so? Possibly an embedded webserver that supports webgl, if one exists?
Have Python installed?
I use this from a command line in the folder your app is in (h/t to Cozzi for the tip):
python -m SimpleHTTPServer. then browse to localhost:8000 and your cesium app should be up and running.
The Python server is convenient for development. If you have Python 3, it is now
python -m http.server 8000
If you are on Windows, IIS will also get the job done.
Patrick