1a - Brief Introduction To Angular
In the next few sections we will review the main part of Angular. In this first part we will review creating a CLI app and using event and property binding with templates.
1. Create a new Angular CLI Project
mkdir workshopcd workshopng new angular-cli-app --routingcd angular-cli-appcode .2. Run the app
ng s
3. Review the structure and key files
4. Add a Home page component
5. Add a route
6. Event and data binding
Last updated