I am using emscripten to provide Javascript bindings for some libraries. Emsripten packages the code into a namespace (global var), called 'Module'.
I want to change the naming so that I can use a name that reflects what the library is used for, and also to prevent variable name collisions further down the line, as I write bindings for other libraries.
I can't find anywhere in the documentation, that shows how to do this. Does anyone know how I can change the default namespace used by emscripten?