The way the library works now is wrong. It should not create a global createjs variable, it should return it's contents as all of Node's modules do (using module.exports), to avoid polluting the global namespace (even if there is only this one variable working as a namespace, this is not the Node way to do things). I understand, that you want to make the usage as close to the browser as possible, but this one thing should be changed.
#EDIT
Apparently the variable was exported in the 1a35f0f commit, but it's not there anymore.
The way the library works now is wrong. It should not create a global createjs variable, it should return it's contents as all of Node's modules do (using
module.exports), to avoid polluting the global namespace (even if there is only this one variable working as a namespace, this is not the Node way to do things). I understand, that you want to make the usage as close to the browser as possible, but this one thing should be changed.#EDIT
Apparently the variable was exported in the 1a35f0f commit, but it's not there anymore.