user1238784
user1238784

Reputation: 2440

Angular Template in MVC Core does not install the npm packages

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 screenshotenter image description here

Upvotes: 0

Views: 35

Answers (1)

Ionut Ungureanu
Ionut Ungureanu

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

Related Questions