-
Notifications
You must be signed in to change notification settings - Fork 0
Description
1.what is Directives
2 Types of Directives:
( SAC). structure, attirbute
3 Component & Modules
Component is where you wirte your binding code, Module logically groups components
4. what is a decorator?
Defines what kind of angular class it is, @component, @NgModule?
5: four data-bind types of Angular:
Expression {{}}, [(ngModel)] properties. Event-Bindings (click), two-binds/one-binds
6 Explain architecture of Angular: hardly to describe just draw it
_7-8 component need disscuss
- template
- component
- data-binds
- direcive
- share date serivce
- DI inject service
- Module groups componets:_
7. Routing: how to implement the Routing
- Confige define route collection path: '', component
- Router-outlet to know where to put
- Rout-link/ Navigate
8: LazyLoading: demoed loading, loading only the necessary HTML, css and js files to better performance
- How to implement the LazyLoading in angular
9. Defines Services:
Services help you to share common logic across Angular Projects:
10: DI
DI is an application design pattern where rather then creating object instances from within component.Angular inject by Contructor
11: How to implement DI In Angular:
providers: [
{provide: BaseLogger, useClass: BaseLoager}
] which belong to ngModule
12. benifies of angular DI
decouple class dependencies
13: ng Server/ng build
ng serve build in memory, ng build build for production
ng build --prod compress js file removes comments.