Creating and Running the Client Contacts Manager Application
Let's create and run our project application using the Angular CLI.
Let’s create the Client Contacts Manager application.
Step 1: Navigate to the working directory
First, let’s go to our main working folder. We like to keep our projects in an educative
folder. Let’s navigate to the working folder using the following command:
cd usr/local/educative
Step 2: Create a new Angular application
Once we’re there, we need to tell the Angular CLI to create a new Angular application. To tell the Angular CLI to create an application, we simply use the following command:
ng new Client-Contacts-Manager-Angular
This will create a new folder within the educative
folder called Client-Contacts-Manager-Angular
, where the CLI will create all the shellcode of the application. As the CLI runs, it will ask you the following two questions:
1. Would you like to add Angular routing?
2. Which stylesheet format would you like to use?
Basically, the CLI ...