Please enable Javascript to correctly display the contents on Dot Net Tricks!
 
Become an Expert in C#, .NET, MVC, JAVA, PHP, AngularJS, Hadoop, Android, iphone, Testing etc.
by Joining our Training Programs and Take Your Career to the Next Level! To know more make a call on +91-9871-74-9695

Understanding AngularJS Bootstrap Process

Posted By : Shailendra Chauhan, 26 Dec 2014
Updated On : 29 Dec 2014
Total Views : 4,616   
 
Keywords : automatic bootstrap process in angular, manual bootstrap in angularjs, angularjs initialization,angularjs automatic initialization, angularjs manual initialization

Angular initializes automatically upon DOMContentLoaded event or when the angular.js script is downloaded to the browser and the document.readyState is set to complete. At this point AngularJS looks for the ng-app directive which is the root of angular app compilation and tells about AngularJS part within DOM. When the ng-app directive is found then Angular will:

  1. Load the module associated with the directive.

  2. Create the application injector.

  3. Compile the DOM starting from the ng-app root element.

This process is called auto-bootstrapping.

<html>
<body ng-app="myApp">
 <div ng-controller="Ctrl">
 Hello {{msg}}!
 </div>
 <script src="lib/angular.js"></script>
 <script>
 var app = angular.module('myApp', []);
 app.controller('Ctrl', function ($scope) {
 $scope.msg = 'World';
 });
 </script>
</body>
</html>

Manual Bootstrap Process

You can manually initialized your angular app by using angular.bootstrap() function. This function takes the modules as parameters and should be called within angular.element(document).ready() function. The angular.element(document).ready() function is fired when the DOM is ready for manipulation.

<html>
<body>
 <div ng-controller="Ctrl">
 Hello {{msg}}!
 </div>
 <script src="lib/angular.js"></script>
 <script>
 var app = angular.module('myApp', []);
 app.controller('Ctrl', function ($scope) {
 $scope.msg = 'World';
 });
 //manual bootstrap process
 angular.element(document).ready(function () {
 angular.bootstrap(document, ['myApp']);
 });
 </script>
</body>
</html>

Note

  1. You should not use the ng-app directive when manually bootstrapping your app.

  2. You should not mix up the automatic and manual way of bootstrapping your app.

  3. Define modules, controller, services etc. before manually bootstrapping your app as defined in above example.

What do you think?

I hope you will enjoy the AngularJS bootstrap process while developing your app with AngularJS. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

 
Further Reading
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Corodva. Read more...
 
Free Interview Books
 
SUBSCRIBE & FOLLOW US
 
Browse By Category
 
 
Like us on Facebook