ca9163d9
ca9163d9

Reputation: 29179

Visual studio scaffold nodejs missing all modules?

I used visual studio to create an node express 4 project. However it cannot run and all the entries under npm show (missing). I cannot find the node_modules folder too.

Upvotes: 0

Views: 65

Answers (1)

Dave V
Dave V

Reputation: 1976

It doesn't install them automatically. Either run npm install from a command window, or right click on the "npm" item in the project structure and do the install that way. I would recommend doing it through the command prompt though, if you are on a 64 bit machine.

Upvotes: 1

Related Questions