Skip to content

Latest commit

 

History

History
136 lines (83 loc) · 4.72 KB

architecture.md

File metadata and controls

136 lines (83 loc) · 4.72 KB

Angular architecture

Angular is an opinionated framework. Means that it orientates the way you structure your code base.

About Angular architecture : https://angular.io/guide/architecture

About Angular 4 to 5 :

Cours videos

tutos

1. templating

2. Les cycles de vie

2. Communication between components

Routing

module

Dependency injections

Decorators (@ContentChild, @ViewChild) & life cycle hook :

StateFull / StateLess

Async pipe

forms

template driven form :

rective forms (model driven form) :

HTTP requests

Performances :

Change detection :

RxJS

Manage async data streams with observable sequences (reactive programming).

zone.js

Helper to debugging, profiling, testing : https://www.youtube.com/watch?v=3IqtmUscE_U. Don't care about it at beginning. It's for advanced usage.

Exemples

Build your own atttribut directive

PWA

Testing