Published on

How to create an Angular 16 application

Authors

Download the CLI

npm install -g @angular/cli

Test if the CLI was installed correctly

ng version

You should see a result like this

How to start angular 16

Lets build the application

ng new component-library
  • you should be seeing this if the build was successful
How to start angular 16

Navigate to the app and type in the following to see the app return

cd component-library
ng serve
How to start angular 16
How to start angular 16

Come back soon to see how we can create components