NG Bootstrapping - suniladhya/Advantage GitHub Wiki

Bootstrapping App component We need to tell angular to load our root component through process called boot strapping.

  1. The url invokes the index.html
  2. index html contains the scripts to reference the app files
  3. the Referenced JS files are processed by browser. And the App main page appears.
  4. How the directive(Custom html Element) is Identified?
  5. It looks in to the angular module- AppModule.( )
  6. Angular Module helps in organizing Application in to cohesive blocks of application, And boundaries in the application
  7. They also provide Template resolution Environment.
  8. Appmoudule => To boot strap our component(App Component).
  9. Browser module in Angular Module
  10. bootstrap:=> Start up component