Angular JS – Part 1
Angular JS is used for MV* (Controller, Presenter, ViewModel) frameworks. Can use JQuery/Zepto. Angular is comprehensive. Partial Templates Updating the data Routing Testable Extends HTML vocabulary Forward Thinking Web components Object.Observe Angular Architecture: Supports two-way binding Dirty Checking Dependency Injection Angular Components: Controllers Views/Directives Directive – Use to extend the HTML. Services Basics: "ng_controller" attribute is used to specify the controller part in HTML. "$scope" is a special field using by Angular, which will pass the values to controller. "Angular Seed" is zip file, while will work as starting point of the application.[Skeleton of the angular application]. Download this for quick bootstrap. Controller create Scope(primary responsibility) which have two way communication with Views. Views use the values in scope and the events use the functions...