ATHER
ATHER

Reputation: 3384

Trying to create Express application using WebStorm and it is not creating Express application

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

Answers (1)

user3787073
user3787073

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

Related Questions