Create new project in angular 7

Here are the steps to create a new project in Angular 7:

Prerequisites:

Step 1: Create a new project

Open a terminal or command prompt and run the following command:

ng new my-new-project

Replace my-new-project with the name of your project.

Step 2: Choose the project template

The Angular CLI will prompt you to choose a project template. You can choose from the following options:

Choose the template that best fits your needs.

Step 3: Configure the project

The Angular CLI will ask you to configure the project. You can choose the following options:

Choose the options that best fit your needs.

Step 4: Create the project

Once you've configured the project, the Angular CLI will create the project directory and initialize the project.

Step 5: Navigate to the project directory

Navigate to the project directory using the following command:

cd my-new-project

Step 6: Run the project

Run the project using the following command:

ng serve

This will start the development server and open the project in your default web browser.

That's it! You've created a new project in Angular 7.

Additional steps: