Angular is one of the most popular Javascript frameworks in the world for building modern web applications. Angular is created & developed by Google and has a huge community support behind it. You can visit Angular official website from here.
Starting with Angular 2+, various configuration files are needed in an Angular project. Installing them manually one by one is a waste of time and also difficult.
Therefore, Angular brings a solution to deal with all of the configurations: Angular CLI. We can start developing an Angular project within a couple of minutes by using Angular CLI.
CLI stands for Command Line Interface. Angular CLI is being used for automating operations in Angular projects rather than doing them manually. CLI supports developers in an Angular project from beginning to end.
For example, Angular CLI can be used for:
Angular CLI saves developers time and effort significantly. You can check its official website below:
If you visit the official website above, you can see that there are some commands written. These are 4 main steps to start an Angular app:
Angular requires Node.js in your system (version 8.x or 10.x). If you already have it, you can skip this part.
Node has the Node Package Manager (NPM), which we need for installing Angular CLI and other programs (packages). You can download NPM from here.
After the installation is completed, go to your Terminal or Windows Command Prompt and type node -v to check which version is installed:
After you’ve installed NPM, you can install Angular CLI as the 2nd step. Open your terminal or command prompt and type the command below:
npm install -g @angular/cli
NOTE: If your Mac restricts installation, you can be super user with sudo su command and try again.
g stands for global installation. We include it so we can use the CLI in any Angular project later. After the installation is completed, type ng v
to verify whether the installation is successful.
ng stands for Angular and -v is version.
You can now install an Angular app with the CLI. Again from your terminal, first choose a file path for where to install your source code. I will select a location as my Desktop with cd Desktop command, then type the following command to install your first Angular Project:
ng new my-first-app
This command will install the Angular app with all the configurations needed. You can choose of course another name.
Angular supports live server, so you can see the changes in your local browser automatically without refreshing the page. After your Angular App is initialized successfully, go to your project folder with cd name-of-your-app.
If everything is all right so far, you can run the Angular app with the following command:
ng serve --open
This command will serve (start) your Angular Application and the open command opens it automatically in your web browser:
After you see this message, a browser page will open and congratulations! Your first Angular app is running on your localhost :)