Developer(s) | |
---|---|
Initial release | October 20, 2010[1] |
Stable release | 1.8.2[2]
/ 21 October 2020 |
Repository | AngularJS Repository |
Written in | JavaScript |
Platform | JavaScript engine |
Size | 167 kB production 1.2 MB development |
Type | Web framework |
License | MIT License |
Website | angularjs |
AngularJS is a JavaScript-based open-source front-end web 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. 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 web applications and progressive web applications.
AngularJS is used as the frontend of the MEAN stack, consisting of MongoDB database, Express.js web application server framework, AngularJS itself (or Angular), and Node.js server runtime environment.
The AngularJS framework is on Long Term Support ("LTS") until December 31, 2021.[3][4] After that date Google will no longer update AngularJS to fix security, browser compatibility, or jQuery issues.[5][4] The Angular team recommends upgrading to Angular (v2+) as the best path forward, but they also provided some other options.[6]
The AngularJS framework works by first reading the Hypertext Markup Language (HTML) page, which has additional custom HTML attributes embedded into it. 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.
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.[7] 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 Document Object Model (DOM) manipulation with the goal of improving testability and performance.
AngularJS's design goals include:
AngularJS implements the MVC pattern to separate presentation, data, and logic components.[8] 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.
AngularJS 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;[9] akin to how scope is defined in lambda calculus.[10]
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".
The task performed by the AngularJS bootstrapper occur in three phases[11] after the DOM has been loaded:
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-animate
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.
ng-app
ng-aria
ng-bind
<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-class
ng-controller
ng-if
ng-init
ng-model
ng-bind
, but establishes a two-way data binding between the view and the scope.ng-model-options
ng-repeat
ng-show
& ng-hide
ng-switch
ng-view
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.[13]
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.[14]
$watch
$scope.$watch('person.username', validateUnique);
<input ng-model="person.username" />
$digest
$apply
$destroy
AngularJS was originally developed in 2009 by Miško Hevery[15] at Brat Tech LLC[16] 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",[16] and had a few subscribers, before the two decided to abandon the business idea and release Angular as an open-source library.
The 1.6 release added many of the concepts of Angular to AngularJS, including the concept of a component-based application architecture.[17] This release among others removed the Sandbox, which many developers believed provided additional security, despite numerous vulnerabilities that had been discovered that bypassed the sandbox.[18] The current (as of March 2020) stable release of AngularJS is 1.7.9[19]
In January 2018, a schedule was announced for phasing-out AngularJS: after releasing 1.7.0, the active development on AngularJS will continue till June 30, 2018. Afterwards, 1.7 will be supported till December 31, 2021 as long-term support.[5][4]
Versions 1.3 and later of AngularJS do not support Internet Explorer 8 or earlier. While AngularJS 1.2 supports IE8, its team does not.[20][21]
Subsequent versions of AngularJS are simply called Angular. Angular is an incompatible TypeScript-based rewrite of AngularJS. Angular 4 was announced on 13 December 2016, skipping 3 to avoid a confusion due to the misalignment of the router package's version which was already distributed as v3.3.0.[22]
AngularDart works on Dart, which is an object-oriented, class defined, single inheritance programming language using C style syntax, that is different from Angular JS (which uses JavaScript) and Angular 2/ Angular 4 (which uses TypeScript). Angular 4 released in March 2017, with the framework's version aligned with the version number of the router it used. Angular 5 was released on November 1, 2017.[23] Key improvements in Angular 5 include support for progressive Web apps, a build optimizer and improvements related to Material Design.[24] Angular 6 was released on 3 May 2018,[25] Angular 7 was released on 18 October 2018, and Angular 8 was released on May 28, 2019. Angular follows Semantic Versioning standards, with each major version number indicating potentially breaking changes. Angular has pledged to provide 6 months of active support for each major version followed by 12 months of long term support. Major releases are bi-yearly with 1 to 3 minor releases for every major release.[26]
A normal Angular application executes in the browser, while Angular Universal generates static application pages on the server through server-side rendering (SSR).[27]
This section needs expansion. You can help by adding to it. (August 2019) |
AngularJS Material[28][29] is a UI component library that implements Material Design in AngularJS.[30] The library provides a set of reusable, well-tested, and accessible UI components.
In July 2012, the Angular team built an extension for the Google Chrome browser called Batarang,[31] 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.[32] For a time during late 2014 and early 2015, the extension was not compatible with recent releases (after v1.2.x) of Angular.[33] The last update made to this extension was on April 4, 2017.
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
. If $scope.myVar
is defined in a controller and this variable was marked for watching, Angular 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. Miško Hevery suggests keeping fewer than 2000 watchers on any page.[14]
AngularJS 1.3 has dropped support for IE8. Read more about it on our blog. AngularJS 1.2 will continue to support IE8, but the core team does not plan to spend time addressing issues specific to IE8 or earlier.
By: Wikipedia.org
Edited: 2021-06-18 12:39:52
Source: Wikipedia.org