⊗jsagPmBsPC 4 of 97 menu

Creating an Angular Project

After installing the Angular framework, we can make our first project. To do this, create a folder in which we will work. Open it through the terminal and write the following command in it ng new, and after it the name of the folder with our project.

Let's choose test as the project name for example:

ng new test

Our project will be installed in the test folder. For further actions, we need to go to this folder in the terminal:

cd test

After the installation is complete, we can run our project. To do this, while in the folder with the site, you should run the following command:

ng serve --open

Perform the installation of your project.

enru