I have node.js installed and running fine on windows 7 computer. I run
> npm install -g express
> npm install -g express-generator
> npm install -g express-generator@3
and they all install successfully. But when I go to a new folder and try:
> express myproject
I get: 'express' is not recognized as an internal or external command, operable program or batch file
I see 'express', 'express.cmd', and 'node_modules' directory with 'express' and 'express-generator' folders in the C:\Users\ME\AppData\Roaming\npm directory
I added the npm directory to my PATH in case that was missed.
I tried all the solutions I could find:
'Express' is not recognized command (windows)
https://groups.google.com/forum/#!topic/express-js/Cr92_LC_pUk
what else can I try to get express working?