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 回答1: 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