Skip to main content

Posts

Showing posts with the label Bootstrap in Angular 4 and 5 app root

What Is Bootstrapping in Angular ? Angular 9, 8, 7, 6

What Is Bootstrapping (bootstrap) in Angular? The Bootstrap is the root AppComponent that Angular creates and inserts into the “ index.html ” host web page. < body >   < app-root ></ app-root > </ body > index.html - <! doctype html > < html lang = "en" > < head >   < meta charset = "utf-8" >   < title > MyApp </ title >   < base href = "/" >   < meta name = "viewport" content = "width=device-width, initial-scale=1" >   < link rel = "icon" type = "image/x-icon" href = "favicon.ico" > </ head > < body >   < app-root ></ app-root > </ body > </ html > You can put more than one component tree on a host web page, that's not typical. Most of the applications have only one component tree and they bootstrap a single root component and you can...