What is Angular?
Angular is a Typescript based, open-source, front-end web app framework
Are AngularJS and Angular the same?
No. Angular is a complete rewrite of AngularJS.
AngularJS is based on Javascript, while Angular utilized Typescript which transcribes into Javascript.
What 3 technologies would you include in your environment to create an Angular app?
What is Angular CLI?
a command line interface used to structure and build Angular apps using node.js style modules. It also handles many common tasks for you, such as generating directives, services, and components.
What CLI command would you use tocreate an Angular project using the Angular CLI?
ng new (project name)
What is the folder structure of an Angular app created by the Angular CLI?
o E2E – The end to end test folder mainly used for integration testing
o Node modules- where Node Package manager packages are installed
o SRC- contains all of the files for the actual Angular project
Where is the app folder located?
within the project’s src folder
What file does the app folder contain if the project is created by the Angular CLI? (4)
What is a decorator?
What is a module?
What is @ngModule?
- it configures the injector and the compiler, and helps organize related things together
What are some attributes inside the @ngModule? (4)
What is bootstrapping?
the first piece of code that is loaded; in the case of Angular, we have to tell it which component is the starting point for our app
What is a component?
- Angular documentation - a component controls a patch of the screen real estate that we could call a view, and declares