@ngdoc overview @name Developer Guide: Initializing Angular @description Initializing Angular consists of loading the `angular.js` script in your page, and specifying how Angular should process and manage the page. To initialize Angular you do the following: * Specify the Angular namespace in the `` page * Choose which flavor of Angular script to load (debug or production) * Specify whether or not Angular should process and manage the page automatically (`ng-app`) The simplest way to initialize Angular is to load the Angular script and tell Angular to compile and manage the whole page. You do this as follows:


  
    ...
  
  
    ...