Open a new command-line interface and run the following command:
$ npm install -g @angular/cli@next
This will install angular/cli v9.0.0-rc.2 as the time of writing this tutorial.
In the next step, we’ll proceed to create a new example project from the command-line.
In our second step, we’ll use Angular CLI to create our example project. Go back to your terminal and run the following commands:
$ cd ~
$ ng new angular-example-with-routing
You’ll get prompted for a couple of things — If Would you like to add Angular routing? Say y and Which stylesheet format would you like to use? Pick CSS.
This will set up routing in our project and set CSS as the stylesheets format for components.
Next, go to the root folder of your project and run the local development server using the following commands:
$ cd angular-example-with-routing
$ ng serve
A live-reload server will be running from the http://localhost:4200/
address: