Angular 2 Bootstrapping Options - AOT vs JIT
Just kick started with Angular 2. What are the various Bootstrapping options in angular 2? Why is that when I make a change and refresh the index.html takes little time to retrieve the HTML markups? Differences between them There are two options Dynamic bootstrapping compiler used JIT (Just in Time). dynamically compiles the ts files in the browser. this is the reason the index.html takes little time to retrieve the markups. main.ts contains the following import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app.module'; platformBrowserDynamic