gib65
gib65

Reputation: 151

How to load node.js/angular 2 project in Visual Studio?

I'm following along in a node.js/angular tutorial in which I'm given the following "seed" project:

enter image description here

I'm told in the tutorial that I can open this in Visual Studio... but how?

Visual Studio requires a project or solution file to open the project. All I see here are some javascript and json files. Sure, I can open individual files, but how do I open the whole project in Visual Studio?

Upvotes: 0

Views: 1249

Answers (2)

Shakeer Hussain
Shakeer Hussain

Reputation: 2526

Please follow the below steps to load your Angular Project in Visual Studio.

Step 1: Open Visual Studio.

Step 2: Go to File--> New--> Project

Step 3: Choose JAvaScript in other languages and select "From existing Node.js code" as shown in below screen shot.

Step 4: Browse location folder.

Step 5: Click Next Next and Finish enter image description here

Upvotes: 0

Mike Tung
Mike Tung

Reputation: 4821

A project in VS Code is just a folder so if you open seed-project in VS Code it should auto populate all the files and set you up to do angular.

Upvotes: 1

Related Questions