http://www.dotblogs.com.tw/jasonyah/archive/2013/06/02/front-end-framework-an-introduction-to-angularjs.aspx
http://docs.angularjs.org/guide/bootstrap
http://en.wikipedia.org/wiki/AngularJS
http://ngmodules.org/
AngularJS is an open-source JavaScript framework, maintained by Google, that assists with running single-page applications.
AngularJS is built around the belief that declarative programming should be used for building user interfaces and wiring software components, while imperative programming is excellent for expressing business logic.
There are 3 important things that happen during the app bootstrap:
- The
injectorthat will be used for dependency injection is created.- The injector will then create the
root scopethat will become the context for the model of our application.- Angular will then "compile" the DOM starting at the
ngApproot element, processing any directives and bindings found along the way.



No comments:
Post a Comment