Reputation: 3024
I have an existing Asp.Net Core 2 MVC app and want to add an angular front end view that gets data from the MVC Web API. Will this require Node.js? (Also if anyone has any tips on tutorials on how to integrate angular into an existing project it would be appreciated).
Upvotes: 0
Views: 1816
Reputation: 9845
Visual Studio 2017 Community (or better) provides templates for ASP.NET Core WebAPI and Angular combined.
You will need node.js for package managing. Visual Studio has a version included.
I would suggest you to completely seperate both. Use the angular-cli for the front-end. Helps you doing all the infrastructure stuff.
Upvotes: 1