Integrating Angular with .NET MVC
In this blog, I will take you through the steps to Integrate Angular with .NET MVC. So, Let’s being and following are the steps to be followed (In this blog, I am taking the example of integrating Angular version 9 with .NET MVC) –
- Install Microsoft Visual Studio 2017/2019
- Install latest version of NodeJS (12.16.1 – Latest version)
Use link - https://nodejs.org/en/download/
- Make sure latest version of Typescript is installed (3.8.3 – Latest version)
Method 1: Use link - https://www.microsoft.com/en-us/download/details.aspx?id=55258
Method 2: If you have npm(Node.js Package Manager) installed, you can install TypeScript globally on your computer by running below command on the command prompt
npm install -g typescript
- Install latest version of Angular CLI (9.0.6 – Latest version)
For installing CLI, its must-have NodeJS installed previously. Use below command to install CLI
npm install -g @angular/cli@latest
- Create an ASP.NET MVC application
About the Author

Topic Replies (0)
You might also like