ASP.NET MVC 5 Angular 4 This post is about how to use Angular 4 with ASP.NET MVC5. In one of my existing projects we were using Angular 1.x, due to some plugin compatibility issues, we had to migrate to latest version of Angular. We couldn’t find any good article which talks about development and deployment aspects of Angular 4 with ASP.NET MVC. The pre-requisites are npm (Node Package Manager) - I am using npm version 5.5.1 Angular CLI - I am using angular cli version 1.5.3 Visual Studio 2017 / 2015 - For developing ASP.NET MVC project. First you need to create ASP.NET MVC project. Once you created the project, using Angular CLI you need to create Angular project. You need to do it in the root folder. And you need to execute following commands to create an Angular project. ng new HelloAngular This will create a folder with name HelloAngular . And it contains all the required files for Angular project. Here is the folder structure after creatin...