@ngdoc overview @name Developer Guide: Bootstrap @description # Overview This page explains the Angular initialization process and how you can manually initialize Angular if necessary. # Angular ` # Manual Initialization If you need to have more control over the initialization process, you can use a manual bootstrapping method instead. Examples of when you'd need to do this include using script loaders or the need to perform an operation before the Angular compiles a page. Here is an example of manually initializing Angular. The example is equivalent to using the {@link api/ng.directive:ngApp ng-app} directive.


  
    Hello {{'World'}}!
    
    
  

This sequence that your code should follow: 1. After the page and all of the code is loaded, find the root of the HTML template, which is typically the root of the document. 2. Call {@link api/angular.bootstrap} to {@link compiler compile} the template into an executable, bi-directionally bound application.