Skip to content

Latest commit

Β 

History

History
59 lines (36 loc) Β· 2.01 KB

README.md

File metadata and controls

59 lines (36 loc) Β· 2.01 KB

Angular-Recipies-Cookbook

The goal of this repo would be to serve as a cookbook for other developers to get help while creating complex components in Angular.

Angular Recipes

Change Detection

This is an Advance Topic, preffered to pick it up only once you have about some experience in writing apps in Angular

Dependency Injection

RxJS Recipes

Beginner Concepts

We will start from the basics, how you can create an observable from a DOM Event

Medium Concepts

Hard Concepts

Functional Programming Recipes

Beginner Concepts

A simple example Use-Case to "Add a DIV to HTML" while keeping the functions pure.

Appendix

This list will act like a mental model for me to remember what each concept is in term of the technologies described above. You can also use it as a Q/A format to test your own level of the concepts in Angular, RxJS and functional Programming.

How is Component Instance is represented inside Angular ? In Angular each component is an instance of Data structure called View.
What is a binding in Angular ? A binding is a datastructure which tracks 2 things source of the change and the View datastructure where the change has to be implemented.

[property]="something"