AngularJS

AngularJS
Original author(s)Miško Hevery
Developer(s)Google
Initial releaseOctober 20, 2010; 14 years ago (2010-10-20)[1]
Stable release
1.8.3[2] Edit this on Wikidata / 7 April 2022; 2 years ago (7 April 2022)
RepositoryAngularJS Repository
Written inJavaScript
PlatformJavaScript engine
Size167 kB production
1.2 MB development
TypeWeb framework
LicenseMIT License
Websiteangularjs.org Edit this on Wikidata

AngularJS (also known as Angular 1) is a discontinued free and open-source JavaScript-based web framework for developing single-page applications. It was maintained mainly by Google and a community of individuals and corporations. It aimed 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 was used as the frontend of the MEAN stack, that consisted of MongoDB database, Express.js web application server framework, AngularJS itself (or Angular), and Node.js server runtime environment.

As of January 1, 2022, Google no longer updates AngularJS to fix security, browser compatibility, or jQuery issues.[3][4][5] The Angular team recommends upgrading to Angular (v2+) as the best path forward, but they also provided some other options.[6]

Overview

The AngularJS framework worked by first reading the HyperText Markup Language (HTML) page, which had additional custom HTML attributes embedded into it. Angular interpreted 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 could be manually set within the code or retrieved from static or dynamic JSON resources.

AngularJS was built on the belief that declarative programming should be used to create user interfaces and connect software components, while imperative programming was better suited to defining an application's business logic.[7] The framework adapted and extended traditional HTML to present dynamic content through two-way data-binding that allowed for the automatic synchronization of models and views. As a result, AngularJS de-emphasized explicit Document Object Model (DOM) manipulation with the goal of improving testability and performance.

AngularJS's design goals included:

  • to decouple DOM manipulation from application logic. The difficulty of this is dramatically affected by the way the code is structured.
  • to decouple the client side of an application from the server-side. This allows development work to progress in parallel and allows for reuse of both sides.
  • to provide structure for the journey of building an application: from designing the UI, through writing the business logic, to testing.

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

Scope

AngularJS used 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".

Bootstrap

The task performed by the AngularJS bootstrapper occurred in three phases[11] 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 allowed 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 were:

ng-animate
A module provides support for JavaScript, CSS3 transition and CSS3 keyframe animation hooks within existing core and custom directives.
ng-app
Declares the root element of an AngularJS application, under which directives can be used to declare bindings and define behavior.
ng-aria
A module for accessibility support of common ARIA attributes.
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-class
Conditionally apply a class, depending on the value of a Boolean expression.
ng-controller
Specifies a JavaScript controller class that evaluates HTML expressions.
ng-if
Basic if statement directive that instantiates 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-init
Called once when the element is initialized.
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-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[12] that resolve JSON before rendering templates driven by specified controllers.

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 had its most notable feature, largely relieving the server backend of templating responsibilities. Instead, templates were rendered in plain HTML according to data contained in a scope defined in the model. The $scope service in Angular detected changes to the model section and modified HTML expressions in the view via a controller. Likewise, any alterations to the view were reflected in the model. This circumvented the need to actively manipulate the DOM and encouraged bootstrapping and rapid prototyping of web applications.[13] AngularJS detected 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 triggered listeners when the model values are changed.[14]

$watch
is an angular method used for dirty checking. Any variable or expression assigned in $scope automatically sets up a $watchExpression in angular. So assigning a variable to $scope or using directives like ng-if, ng-show, ng-repeat etc. all create watches in angular scope automatically. Angular maintains a simple array of $$watchers in the $scope objects
Different ways of defining a watcher in AngularJS.
  • explicitly $watch an attribute on $scope.
    $scope.$watch('person.username', validateUnique);
  • place an interpolation in your template (a watcher will be created for you on the current $scope).
  • ask a directive such as ng-model to define the watcher for you.
    <input ng-model="person.username" />
$digest
is angular method that is invoked internally by angularjs in frequent intervals. In $digest method, angular iterates over all $watches in its scope/child scopes.
$apply
is an angular method that internally invokes $digest. This method is used when you want to tell angular manually start dirty checking (execute all $watches)
$destroy
is both a method and event in angularjs. $destroy() method, removes a scope and all its children from dirty checking. $destroy event is called by angular whenever a $scope or $controller is destroyed.

Development history

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 November 2023) stable release of AngularJS is 1.8.3[19]

In January 2018, a schedule was announced for phasing-out AngularJS: after releasing 1.7.0, the active development on AngularJS would continue until June 30, 2018. Afterwards, 1.7 was supported until December 31, 2021 as long-term support.[4][5]

Legacy browser support

Versions 1.3 and later of AngularJS did not support Internet Explorer 8 or earlier. While AngularJS 1.2 supported IE8, its team does not.[20][21]

Angular and AngularDart

Subsequent versions of AngularJS are simply called Angular.[22] 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.[23]

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.[24] Key improvements in Angular 5 include support for progressive Web apps, a build optimizer and improvements related to Material Design.[25] Angular 6 was released on 3 May 2018,[26] 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.[27]

Angular Universal

A normal Angular application executes in the browser, while Angular Universal generates static application pages on the server through server-side rendering (SSR).[28]

Libraries

AngularJS Material

AngularJS Material[29][30] was a UI component library that implemented Material Design in AngularJS.[31] The library provided a set of reusable, well-tested, and accessible UI components. In January 2022, the library was closed, as announced on their official website.[32] The AngularJS Material library is a mature and stable product that is ready for production use and works only with AngularJS 1.x. The Angular Material library is available in the angular/material2 GitHub repository.

Chrome extension

In July 2012, the Angular team built an extension for the Google Chrome browser called Batarang,[33] that improved the debugging experience for web applications built with Angular. The extension aimed to allow for easy detection of performance bottlenecks and offered a GUI for debugging applications.[34] For a time during late 2014 and early 2015, the extension was not compatible with recent releases (after v1.2.x) of Angular.[35] The last update made to this extension was on April 4, 2017. Additionally, the extension was removed from the Chrome Web Store on June 1, 2022, due to its lack of updates and potential security concerns, such as requiring sensitive permissions.

Performance

AngularJS set out the paradigm of a digest cycle. This cycle could be considered a loop, during which AngularJS checked if there were any changes 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 would monitor the changes on myVar in each loop iteration.

This approach potentially led to slow rendering when AngularJS checked on too many variables in the $scope every cycle. Miško Hevery suggested keeping fewer than 2000 watchers on any page.[14]

See also

References

  1. ^ "Releases · angular/angular.js". GitHub. Retrieved April 9, 2021.
  2. ^ "Release 1.8.3". 7 April 2022. Retrieved 29 July 2022.
  3. ^ "AngularJS". docs.angularjs.org. Retrieved 2021-05-14.
  4. ^ a b "AngularJS". docs.angularjs.org. Retrieved April 9, 2021.
  5. ^ a b Darwin, Pete Bacon (27 July 2020). "Stable AngularJS and Long Term Support". Angular Blog. Retrieved April 9, 2021.
  6. ^ Techson, Mark (February 2, 2021). "Finding a Path Forward with AngularJs". Medium. Retrieved April 9, 2021.
  7. ^ "What Is Angular?". Retrieved 12 February 2013.
  8. ^ "AngularJS". docs.angularjs.org. Retrieved April 9, 2021.
  9. ^ "Annotated ECMAScript 5.1, Section 10.2 Lexical Environments". Retrieved 2015-01-03.
  10. ^ Barendregt, Henk; Barendsen, Erik (March 2000), Introduction to Lambda Calculus (PDF)
  11. ^ "Writing Directives". angularjs.org. November 28, 2012. Retrieved 2013-07-21.
  12. ^ "AngularJS". docs.angularjs.org. Retrieved April 9, 2021.
  13. ^ "5 Awesome AngularJS Features". Retrieved 13 February 2013.
  14. ^ a b Hevery, Misko. "Databinding in angularjs". Retrieved 2014-03-09.
  15. ^ "Hello World, <angular/> is here". Retrieved 2014-10-12.
  16. ^ a b "GetAngular". Angular / BRAT Tech. LLC. Archived from the original on 2010-04-13. Retrieved 2014-10-12.
  17. ^ "AngularJS: Developer Guide for v1.5.8: Components". Retrieved 2017-09-26.
  18. ^ "angular.js". GitHub. Retrieved 2017-09-26.
  19. ^ "Release v1.8.3 · angular/angular.js". GitHub. Retrieved November 29, 2023.
  20. ^ "Internet Explorer Compatibility". Angular JS 1.7.7 Developer Guide. Retrieved 12 Feb 2019. 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.
  21. ^ Minar, Igor. "AngularJS 1.3: a new release approaches". AngularJS Blog. Archived from the original on 2014-10-13. Retrieved 2014-10-12.
  22. ^ "Introduction to Angular". Retrieved 2021-12-08.
  23. ^ "Ok... let me explain: it's going to be Angular 4.0". angularjs.blogspot.kr. Archived from the original on 2016-12-13. Retrieved 2016-12-14.
  24. ^ Fluin, Stephen (April 26, 2018). "Version 5.0.0 of Angular Now Available". Medium. Retrieved April 9, 2021.
  25. ^ Krill, Paul (September 18, 2017). "AngularJS 5 JavaScript framework delayed". InfoWorld. Retrieved April 9, 2021.
  26. ^ Fluin, Stephen (3 May 2018). "Version 6 of Angular Now Available – Angular Blog". Angular Blog. Retrieved 8 June 2018.
  27. ^ "Angular versioning and releases". angular.io. Retrieved 8 June 2018.
  28. ^ Pieszak, Mark (January 7, 2020). "Angular Universal & Server-side rendering Deep-Dive". Medium. Retrieved April 9, 2021.
  29. ^ "angular/material (GitHub)". GitHub. Retrieved 2020-12-24.
  30. ^ "AngularJS Material Documentation". Retrieved 2020-12-24.
  31. ^ Kotaru, V. Keerti (2016-08-25). Material Design Implementation with AngularJS: UI Component Framework. Apress. p. 4. ISBN 9781484221907.
  32. ^ "AngularJS Material". material.angularjs.org. Retrieved 2022-05-04.
  33. ^ "angular/angularjs-batarang (GitHub)". GitHub. Retrieved 2014-10-12.
  34. ^ Ford, Brian. "Introducing the AngularJS Batarang". AngularJS Blog. Archived from the original on 2014-10-13. Retrieved 2014-10-12.
  35. ^ "batarang Chrome extension for AngularJS appears broken". Stack Overflow.

Further reading

Read other articles:

French sociologist, technology critic, and Christian anarchist Jacques EllulEllul in 1990BornJanuary 6, 1912Bordeaux, FranceDiedMay 19, 1994(1994-05-19) (aged 82)Pessac, FranceEducationUniversity of ParisEra20th-century philosophyRegionWestern philosophySchoolChristian anarchismContinental philosophyNon-conformists of the 1930sNotable ideasTechnological society RighteousAmong the Nations The Holocaust Rescuers of Jews Righteousness Seven Laws of Noah Yad Vashem By country Austrian Croati...

 

 

陆军第十四集团军炮兵旅陆军旗存在時期1950年 - 2017年國家或地區 中国效忠於 中国 中国共产党部門 中国人民解放军陆军種類炮兵功能火力支援規模约90门火炮直屬南部战区陆军參與戰役1979年中越战争 中越边境冲突 老山战役 成都军区对越轮战 紀念日10月25日 陆军第十四集团军炮兵旅(英語:Artillery Brigade, 14th Army),是曾经中国人民解放军陆军第十四集团军下属�...

 

 

Kontributor utama artikel ini tampaknya memiliki hubungan dekat dengan subjek. Artikel ini mungkin memerlukan perapian untuk mematuhi kebijakan konten Wikipedia, terutama dalam hal sudut pandang netral. Silakan dibahas lebih lanjut di halaman pembicaraan artikel ini. (Pelajari cara dan kapan saatnya untuk menghapus pesan templat ini)Artikel ini kemungkinan ditulis dari sudut pandang penggemar dan bukan sudut pandang netral. Mohon rapikan untuk menghasilkan standar kualitas yang lebih tinggi d...

Michalīs Kōnstantinou Nazionalità  Cipro Altezza 188 cm Peso 80 kg Calcio Ruolo Attaccante Termine carriera 18 gennaio 2014 Carriera Squadre di club1 1993-1997 EN Paralimni68 (31)1997-2001 Īraklīs119 (60)2001-2005 Panathīnaïkos94 (34)2005-2008 Olympiakos57 (17)2008-2009 Īraklīs13 (3)2009-2011 Omonia59 (34)2011-2012 Anorthōsis17 (3)2012-2013 AEL Limassol19 (6) Nazionale 1997-2012 Cipro84 (32) 1 I due numeri indicano le presenze e le reti ...

 

 

Engineering science that deals with the recording, transmission, processing and storage of messages Communications Engineering redirects here. For the journal, see Communications Engineering (journal). Telecommunications engineer working to maintain London's phone service during World War 2, in 1942. Telecommunications engineering is a subfield of electronics engineering which seeks to design and devise systems of communication at a distance.[1][2] The work ranges from basic c...

 

 

Allegorical personification of Hope: Hope in a Prison of Despair, 1887, by Evelyn De Morgan Hope (Latin: spes) is one of the three theological virtues in the Christian tradition. Hope is a combination of the desire for something and expectation of receiving it. The Christian virtue is hoping specifically for Divine union and so eternal happiness. While faith is a function of the intellect, hope is an act of the will. As a deeply rooted aspect of human life, it also encompasses other dimension...

Pioneer cruise ship This article is about the cruise ship. For the princess, see Princess Victoria Louise of Prussia. Prinzessin Victoria Luise dressed overall History Germany NamePrinzessin Victoria Luise NamesakePrincess Victoria Louise of Prussia OwnerHamburg America Line Port of registryHamburg BuilderBlohm+Voss, Hamburg Yard number144 Launched29 June 1900 Completed19 December 1900 Maiden voyage5 January 1901 Identification code letters RLVT Fategrounded 16 December 1906 General character...

 

 

Sceaux 行政国 フランス地域圏 (Région) イル=ド=フランス地域圏県 (département) オー=ド=セーヌ県郡 (arrondissement) アントニー郡小郡 (canton) 小郡庁所在地INSEEコード 92071郵便番号 92330市長(任期) フィリップ・ローラン(2008年-2014年)自治体間連合 (fr) メトロポール・デュ・グラン・パリ人口動態人口 19,679人(2007年)人口密度 5466人/km2住民の呼称 Scéens地理座標 北緯48度4...

 

 

Photo tirée de The Story of the Kelly Gang (1906) Un long métrage (également écrit long-métrage) est un film de cinéma d'une durée significative, dont la définition précise dépend des normes reconnues selon les pays ou organisations. Histoire Définition En France, selon les textes en vigueur du Centre national du cinéma et de l'image animée, la durée d'un long métrage est plus exactement supérieur ou égal à 58 minutes et 29 secondes, c'est-à-dire l'équivalent d'une bobine ...

English politician Sir Simonds d'Ewes, 1st Baronet (18 December 1602 – 18 April 1650) was an English antiquary and politician. He was bred for the bar, was a member of the Long Parliament and left notes on its transactions. D'Ewes took the Puritan side in the Civil War. His Journal of all the Parliaments of Elizabeth is of value; he left an Autobiography and Correspondence. Early life Simonds d'Ewes was born on 18 December 1602 at Coaxdon Hall, Dorset (now in All Saints, Devon), the eldest ...

 

 

「アプリケーション」はこの項目へ転送されています。英語の意味については「wikt:応用」、「wikt:application」をご覧ください。 この記事には複数の問題があります。改善やノートページでの議論にご協力ください。 出典がまったく示されていないか不十分です。内容に関する文献や情報源が必要です。(2018年4月) 古い情報を更新する必要があります。(2021年3月)出...

 

 

هذه المقالة تحتاج للمزيد من الوصلات للمقالات الأخرى للمساعدة في ترابط مقالات الموسوعة. فضلًا ساعد في تحسين هذه المقالة بإضافة وصلات إلى المقالات المتعلقة بها الموجودة في النص الحالي. (يونيو 2023) هذه المقالة يتيمة إذ تصل إليها مقالات أخرى قليلة جدًا. فضلًا، ساعد بإضافة وصلة �...

Israeli electoral alliance This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: United Torah Judaism – news · newspapers · books · scholar · JSTOR (January 2022) (Learn how and when to remove this message) United Torah Judaism יהדות התורה‎LeaderYitzhak GoldknopfFounded1992; 32 years a...

 

 

Details of the trade planning and execution by India Part of a series onWorld trade Policy Import Export Balance of trade Trade law Trade pact Trade bloc Trade creation Trade diversion Export orientation Import substitution Trade finance Trade facilitation Trade route Domestic trade Tax Restrictions Trade barriers Tariffs Non-tariff barriers Import quotas Tariff-rate quotas Import licenses Customs duties Export subsidies Technical barriers Bribery Exchange rate controls Embargo Safeguards Cou...

 

 

← червень → Пн Вт Ср Чт Пт Сб Нд           1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2024 рік 27 червня — 178-й день року (179-й в високосні роки) в григоріанському календарі. До кінця року залишається 187 днів. Цей день в історії: 26 червня—27 червня—28 червня Зміс�...

Reporter senza frontiereReporters Sans Frontières Sede centrale a Parigi TipoOrganizzazione non a scopo di lucro, ONG con status di consulente presso le Nazioni Unite Fondazione1985 FondatoreRobert Ménard, Rémy Loury, Jacques Molénat e Émilien Jubineau ScopoPortare la libertà di stampa in tutto il mondo Sede centrale Parigi Area di azione Mondo DirettoreChristophe Deloire(da luglio 2012) Lingue ufficialifrancese, inglese BilancioReddito: € 4,2 milioni (2013)Spese: 4,6 milioni...

 

 

Australian drama and soap opera television series This article is about the television show. For other uses, see Return to Eden (disambiguation). Return to EdenSeries title screenGenreSoap operaDramaCreated byMichael LaurenceStarringRebecca GillingJames ReyneWendy HughesJames SmilliePeta ToppanoDaniel AbineriComposerBrian MayCountry of originAustraliaOriginal languageEnglishNo. of episodesMini-series: 3Weekly series: 22ProductionProducersHal McElroyTim SandersProduction locationsArnhem LandDa...

 

 

Australian politician For other people named Michael Daley, see Michael Daley (disambiguation). The HonourableMichael DaleyMPAttorney-General of New South WalesIncumbentAssumed office 28 March 2023PremierChris MinnsPreceded byMark Speakman38th Leader of the Opposition in New South WalesElections: 2019In office10 November 2018 – 25 March 2019PremierGladys BerejiklianDeputyPenny SharpePreceded byLuke FoleySucceeded byJodi McKayLeader of the Australian Labor Party (New South Wales...

Russian philosopher (1831–1891) In this name that follows Eastern Slavic naming customs, the patronymic is Nikolayevich and the family name is Leontiev. Russian philosopher Konstantin Leontiev in 1880 Konstantin Nikolayevich Leontiev, monastic name: Clement[1] (Russian: Константи́н Никола́евич Лео́нтьев; 25 January 1831 – 24 November 1891) was a conservative tsarist and imperial monarchist Russian philosopher who advocated closer cultural ties b...

 

 

Gangnam StyleSingel oleh Psydari album Psy 6 (Six Rules), Part 1Dirilis15 Juli 2012 (2012-07-15)FormatCD single, unduh digitalDirekam2012GenreK-pop[1][2]Durasi3:39LabelYG, Universal Republic, School BoyPenciptaPark Jae-Sang, Yoo Gun-hyung[3]ProduserPark Jae-Sang, Yoo Gun Hyung[4] Karya seni kaset Psy 6 (Six Rules), Part 1 Karya seni kaset Psy 6 (Six Rules), Part 1 Video musikGangnam Style di YouTube Gangnam Style (bahasa Korea: 강남스타일, Penguca...