Reputation: 4872
So I have been using npm for some time and have done a recent reinstall from win8.1 to win8.1. I know it worked before and it says so here as well.
Since then I have installed npm i -g express
but it won't run.
'express' is not recognized as an internal or external command, operable program or batch file.
I tried running express from console and it won't run.
This is in my path: C:\Users\xxx\AppData\Roaming\npm
Upvotes: 0
Views: 49
Reputation: 5848
The CLI is express-generator.
Do npm install -g express-generator
.
Upvotes: 1