AngularJS

AngularJS
Developer(s) Google
Initial release October 20, 2010 (2010-10-20)[1]
Stable release
2.2.0 / November 14, 2016 (2016-11-14)[2]
Repository github.com/angular/angular.js
Development status Active
Written in TypeScript, JavaScript
Platform Cross-platform, see Legacy browser support
Size 144 KB production
1 MB development
Type JavaScript, Single-page application Framework
License MIT License
Website angularjs.org
angular.io

AngularJS (commonly referred to as "Angular" or "Angular.js") is a complete JavaScript-based open-source front-end web application framework mainly maintained by Google and by a community of individuals and corporations to address many of the challenges encountered in developing single-page applications. The JavaScript components complement Apache Cordova, the framework used for developing cross-platform mobile apps. It aims to simplify both the development and the testing of such applications by providing a framework for client-side model–view–controller (MVC) and model–view–viewmodel (MVVM) architectures, along with components commonly used in rich Internet applications.

The AngularJS framework works by first reading the HTML page, which has embedded into it additional custom tag attributes. Angular interprets those attributes as directives to bind input or output parts of the page to a model that is represented by standard JavaScript variables. The values of those JavaScript variables can be manually set within the code, or retrieved from static or dynamic JSON resources.

According to JavaScript analytics service Libscore, AngularJS is used on the websites of Wolfram Alpha, NBC, Walgreens, Intel, Sprint, ABC News, and approximately 12,000 other sites out of 1 million tested in October 2016.[3]

AngularJS is the frontend part of the MEAN stack, consisting of MongoDB database, Express.js web application server framework, Angular.js itself, and Node.js runtime environment.

Angular JS

Architecture of an Angular 2 application. The main building blocks are modules, components, templates, metadata, data binding, directives, services and dependency injection.

AngularJS is built on the belief that declarative programming should be used to create user interfaces and connect software components, while imperative programming is better suited to defining an application's business logic.[4] The framework adapts and extends traditional HTML to present dynamic content through two-way data-binding that allows for the automatic synchronization of models and views. As a result, AngularJS de-emphasizes explicit DOM manipulation with the goal of improving testability and performance.

AngularJS's design goals include:

Angular implements the MVC pattern to separate presentation, data, and logic components.[5] Using dependency injection, Angular brings traditionally server-side services, such as view-dependent controllers, to client-side web applications. Consequently, much of the burden on the server can be reduced.

Scope

Angular uses the term "scope" in a manner akin to the fundamentals of computer science.

Scope in computer science describes when in the program a particular binding is valid. The ECMA-262 specification defines scope as: a lexical environment in which a Function object is executed in client-side web scripts;[6] akin to how scope is defined in lambda calculus.[7]

As a part of the "MVC" architecture, the scope forms the "Model", and all variables defined in the scope can be accessed by the "View" as well as the "Controller". The scope behaves as a glue and binds the "View" and the "Controller".

In Angular, "scope" is a certain kind of object[8] that itself can be in scope or out of scope in any given part of the program, following the usual rules of variable scope in JavaScript like any other object.[9] When the term "scope" is used below, it refers to the Angular scope object and not the scope of a name binding. Angular is an easy way to bind data in html DOM.

Bootstrap

The tasks performed by the AngularJS bootstrapper occur in three phases[10] after the DOM has been loaded:

  1. Creation of a new Injector
  2. Compilation of the directives that decorate the DOM
  3. Linking of all directives to scope

AngularJS directives allow the developer to specify custom and reusable HTML-like elements and attributes that define data bindings and the behavior of presentation components. Some of the most commonly used directives are:

ng-app
Declares the root element of an AngularJS application, under which directives can be used to declare bindings and define behavior.
ng-bind
Sets the text of a DOM element to the value of an expression. For example, <span ng-bind="name"></span> displays the value of ‘name’ inside the span element. Any change to the variable ‘name’ in the application's scope reflect instantly in the DOM.
ng-model
Similar to ng-bind, but establishes a two-way data binding between the view and the scope.
ng-model-options
Provides tuning for how model updates are done.
ng-class
Lets class attributes be dynamically loaded.
ng-controller
Specifies a JavaScript controller class that evaluates HTML expressions.
ng-repeat
Instantiate an element once per item from a collection.
ng-show & ng-hide
Conditionally show or hide an element, depending on the value of a boolean expression. Show and hide is achieved by setting the CSS display style.
ng-switch
Conditionally instantiate one template from a set of choices, depending on the value of a selection expression.
ng-view
The base directive responsible for handling routes[11] that resolve JSON before rendering templates driven by specified controllers.
ng-if
Basic if statement directive that allow to show the following element if the conditions are true. When the condition is false, the element is removed from the DOM. When true, a clone of the compiled element is re-inserted.
ng-aria
A module for accessibility support of common ARIA attributes.
ng-animate
A module provides support for JavaScript, CSS3 transition and CSS3 keyframe animation hooks within existing core and custom directives.

Since ng-* attributes are not valid in HTML specifications, data-ng-* can also be used as a prefix. For example, both ng-app and data-ng-app are valid in AngularJS.

Two-way data binding

AngularJS' two-way data binding is its most notable feature, largely relieving the server backend of templating responsibilities. Instead, templates are rendered in plain HTML according to data contained in a scope defined in the model. The $scope service in Angular detects changes to the model section and modifies HTML expressions in the view via a controller. Likewise, any alterations to the view are reflected in the model. This circumvents the need to actively manipulate the DOM and encourages bootstrapping and rapid prototyping of web applications.[12] AngularJS detects changes in models by comparing the current values with values stored earlier in a process of dirty-checking, unlike Ember.js and Backbone.js that trigger listeners when the model values are changed.[13]

Development history

AngularJS was originally developed in 2009 by Miško Hevery[14] at Brat Tech LLC[15] as the software behind an online JSON storage service, that would have been priced by the megabyte, for easy-to-make applications for the enterprise. This venture was located at the web domain "GetAngular.com",[15] and had a few subscribers, before the two decided to abandon the business idea and release Angular as an open-source library.

Releases

Angular 1

The current stable release of AngularJS is 1.5.8.[16]

Angular 2

Angular 2.0 was announced at the ng-Europe conference 22-23. September 2014.[17] The drastic changes in the 2.0 version created considerable controversy among developers.[18] On April 30, 2015, the Angular developers announced that Angular 2 moved from Alpha to Developer Preview.[19] Angular 2 can be downloaded from the official website. Angular 2 moved to Beta in December 2015,[20] and the first release candidate was published in May 2016.[21] The final version was released on September 14, 2016.

Angular 2 is not a version upgrade, but a complete rewrite. The primary differences in Angular 2 over Angular 1 are:[22]

Legacy browser support

Versions 1.2 and later of AngularJS do not support Internet Explorer versions 6 or 7.[24] Versions 1.3 and later of AngularJS dropped support for Internet Explorer 8.[25]

Chrome extension

In July 2012, the Angular team built an extension for the Google Chrome browser called Batarang,[26] that improves the debugging experience for web applications built with Angular. The extension aims to allow for easy detection of performance bottlenecks and offers a GUI for debugging applications.[27] For a time during late 2014 and early 2015, the extension was not compatible with recent releases (after v1.2.x) of Angular.[28] It currently, as of late 2016, still works with all versions of Angular (although there have been no updates to the source code since March 2016[29]).

Performance

AngularJS sets out the paradigm of a digest cycle. This cycle can be considered a loop, during which AngularJS checks if there is any change to all the variables watched by all the $scopes. So, if $scope.myVar is defined in a controller and this variable was marked for watching, AngularJS will monitor the changes on myVar in each loop iteration.

This approach potentially leads to slow rendering when AngularJS checks on too many variables in the $scope every cycle. Hevery suggests keeping fewer than 2000 watchers on any page.[13]

See also

References

  1. Earliest known releases
  2. "Release 2.2.0". GitHub. Retrieved 2016-11-16.
  3. "Libscore". libscore.com. Retrieved 2016-10-17.
  4. "What Is Angular?". Retrieved 12 February 2013.
  5. Understanding Components
  6. "Annotated ECMAScript 5.1, Section 10.2 Lexical Environments". Retrieved 2015-01-03.
  7. Barendregt, Henk; Barendsen, Erik (March 2000), Introduction to Lambda Calculus (PDF)
  8. "AngularJS: Developer Guide: Scopes". Retrieved 2015-01-03.
  9. "ECMA-262-3 in detail. Chapter 4. Scope chain.". Retrieved 2015-01-03.
  10. "Writing Directives". angularjs.org. November 28, 2012. Retrieved 2013-07-21.
  11. Component Router
  12. "5 Awesome AngularJS Features". Retrieved 13 February 2013.
  13. 1 2 Misko Hevery. "Databinding in angularjs". Retrieved 2014-03-09.
  14. "Hello World, <angular/> is here". Retrieved 2014-10-12.
  15. 1 2 "GetAngular". Angular / BRAT Tech. LLC. Archived from the original on 2010-04-13. Retrieved 2014-10-12.
  16. "angular/angular.js". GitHub. Retrieved 2016-07-22.
  17. Coman Hamilton. "A sneak peek at the radically new Angular 2.0". Retrieved 2015-10-21.
  18. Coman Hamilton. "Angular 2.0 announcement backfires". Retrieved 2015-10-21.
  19. angularjs (30 Apr 2015). "Angular 2 moves from Alpha to Developer Preview! Dev guide and API docs now available at ... angular.io/docs/js/latest" (Tweet). Retrieved 2015-10-21 via Twitter.
  20. "Angular: Angular 2 Beta". angularjs.blogspot.it. Retrieved 2016-07-13.
  21. "angular/angular". GitHub. Retrieved 2016-05-04.
  22. "7 key differences between Angular 1 and Angular 2"
  23. "What's New in Angular 2.0". SitePoint. 2015-03-02. Retrieved 2016-05-04.
  24. "AngularJS: Developer Guide: Internet Explorer Compatibility". Google. Retrieved 2014-10-12.
  25. Minar, Igor. "AngularJS 1.3: a new release approaches". AngularJS Blog. Retrieved 2014-10-12.
  26. "angular/angularjs-batarang (GitHub)". Retrieved 2014-10-12.
  27. Ford, Brian. "Introducing the AngularJS Batarang". AngularJS Blog. Retrieved 2014-10-12.
  28. "batarang Chrome extension for AngularJS appears broken".
  29. https://github.com/angular/batarang/graphs/commit-activity

Further reading

External links

Wikimedia Commons has media related to AngularJS.
This article is issued from Wikipedia - version of the 11/27/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.