I installed nodejs from nodejs.org on my windows box.
The path to node is C:\Program Files (x86)\nodejs\node.exe
I can run node in command prompt correctly, my question is...I cloned uglifyjs to C:\gitrepos\uglifyjs\
Now I am trying to figure out how to get things setup to just run something like
node uglifyjs -o inputfile.min.js inputfile.js
What has to happen to allow me to do that?
.batfile or so in your path that passes its arguments tonode <path to uglifyjs> <arguments>- however, I'm not good enough at batch scripting to be able to tell you how to do this.