November 2019
Beginner
804 pages
20h 1m
English
At this point, you should already have a good idea about the main pieces of the Angular puzzle. This might still be fuzzy, but it'll all become much clearer once we put things together (that is, pretty soon!).
As promised earlier, let's now examine how the Angular bootstrap process works.
If you take a look at an application generated by the Angular CLI, you should find the following tag in the src/index.html file: <app-root></app-root>. This is where the root component of your application (that is, the app component) gets added. However, before Angular can kick in and effectively replace that element with the DOM of the actual app component, it needs to be loaded and initialized.
By default, even if you don't ...
Read now
Unlock full access