Please enable JavaScript.
Coggle requires JavaScript to display documents.
Architecture (Modules (NgModule() decorator (declarations (Components etc.…
Architecture
-
Components
-
A component contains a class that defines the application logic and an HTML template that defines the view
-
Templates
-
-
Data bindings
-
-
-
-
All data bindings are processed once for each JavaScript event cycle, from root to leaves
-
-
-
Services and DI
-
-
Overview
-
A service is usually a class with a narrow, well-defined purpose
-
Fetches data, validates user input, and logs to the console in place of components
-
Providers
Can be registered and scoped in the service, NgModule, or component levels
-
-