-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
Modern Full-Stack Web Development with ASP.NET Core
By :
In this section, we will set up a development environment for integrating Angular with ASP.NET Core, configure ASP.NET Core to serve an Angular application, and create the basic structure of an Angular project to get started.
Assuming that you already have Node.js and npm installed on your machine based on the practical exercise of the previous chapter, to work with Angular, you must have the Angular CLI installed as well. This provides a powerful set of tools to manage Angular applications during development. To install it globally, you can run the following command using a regular Command Prompt (CMD):
npm install -g @angular/cli
Now, with everything installed correctly, we can proceed to create the ASP.NET Core Web API project in the next section.
To create an ASP.NET Core Web API project, follow these steps: