Reputation: 2440
I have created a new applicationWeb Core + Angular template in VS 2017. But in the npm nodes all angular files are marked as not installed. What should I do?
Here is screenshot
Upvotes: 0
Views: 35
Reputation: 1030
Open a command prompt in the solution directory and type the command:
npm install
Note: you must have node.js installed (NodeJs)
Upvotes: 1