Concept Flow - Creating a new Angular project
Open Terminal
Run: npm install -g @angular/cli
Run: ng new project-name
Answer prompts: routing? style?
Angular CLI creates project files
Navigate into project folder
Run: ng serve
Open browser at localhost:4200
See default Angular app running
Project ready for development
This flow shows the steps from opening the terminal to seeing the Angular app running in the browser after creating a new project.