Reputation: 3384
I am trying to create Express application using WebStorm and getting following error and cannot figure out why WebStorm cannot find Express related stuff:
Node.js Interpreter: C:\Program Files\nodejs\nodevars.bat
npm Executable: C:\Program Files\nodejs\npm.cmd
Express Version: Unavailable
Template Version: Unavailable
CSS Engine: Unavailable
Upvotes: 4
Views: 2678
Reputation: 103
I was able to fix this by installing express as a global package:
npm install express -g
After that, express, template and engine all populated correctly.
Upvotes: 9