Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Angular (web framework)
Open source web application framework

Angular (also referred to as Angular 2+) is a TypeScript-based free and open-source single-page web application framework. It is developed by Google and by a community of individuals and corporations. Angular is a complete rewrite from the same team that built AngularJS. The Angular ecosystem consists of a diverse group of over 1.7 million developers, library authors, and content creators. According to the Stack Overflow Developer Survey, Angular is one of the most commonly used web frameworks.

Related Image Collections Add Image
We don't have any YouTube videos related to Angular (web framework) yet.
We don't have any PDF documents related to Angular (web framework) yet.
We don't have any Books related to Angular (web framework) yet.
We don't have any archived web articles related to Angular (web framework) yet.

Differences between Angular and AngularJS

Google designed Angular as a ground-up rewrite of AngularJS. Unlike AngularJS, Angular does not have a concept of "scope" or controllers; instead, it uses a hierarchy of components as its primary architectural characteristic.4 Angular has a different expression syntax, focusing on "[ ]" for property binding, and "( )" for event binding.5 Angular recommends the use of Microsoft's TypeScript language, which introduces features such as static typing, generics, and type annotations.

Features

Component-based architecture

Angular uses a component-based architecture, which allows developers to build encapsulated, reusable user interface elements. Each component encapsulates its own HTML, CSS, and TypeScript, making it easier to manage and test individual pieces of an application.6

Data binding

Angular supports two-way data binding,7 which synchronizes data between the model and the view. This ensures that any changes in the view are automatically reflected in the model and vice versa.8

Dependency injection

Angular has a built-in dependency injection system that makes it easier to manage and inject dependencies into components and services. This promotes modularity and easier testing.9

Directives

Angular extends HTML with additional attributes called directives. Directives offer functionality to change the behavior or appearance of DOM elements.10

Routing

Angular includes a router that allows developers to define and manage application states and navigation paths, making it easier to build single-page applications with complex routing.11

Angular CLI

The Angular CLI (Command Line Interface) provides a set of tools for creating, building, testing, and deploying Angular applications. It enables rapid application setup and simplifies ongoing development tasks.12

Server-side rendering

Angular has official support for server-side rendering, which improves an application's load time and performance. Server-side rendering also enhances search engine optimization by making content more accessible to web crawlers.13

History

Angular 2.0 was announced during the keynote of the 2014 NG-Conf conference 16-17 January 2014.14 On April 30, 2015, the Angular developers announced that Angular 2 moved from Alpha to Developer Preview.15 Angular 2 moved to Beta in December 2015,16 and the first release candidate was published in May 2016.17 The final version was released on 14 September 2016.

Version 8 of Angular introduced a new compilation and rendering pipeline, Ivy, and version 9 of Angular enabled Ivy by default. Angular 13 removed the deprecated former compiler, View Engine.18 Angular 14 introduced standalone components and Angular 17 made them the default, de-emphasizing the use of modules.19

Angular 18, released in 2024, introduced several improvements such as standalone components defaulting to true, built-in control flow syntax, zoneless support previews, and modern SSR debugging tools.[44]

Naming

The rewrite of AngularJS was called "Angular 2", but this led to confusion among developers. To clarify, the team announced that separate names should be used for each framework with "AngularJS" referring to the 1.X versions and "Angular" without the "JS" referring to versions 2 and up.20

Version history

VersionRelease dateNew features
Latest version: Angular 20May 28, 2025by default Angular CLI will not generate suffixes for components, directives, services, and pipes.21
Supported: Angular 19November 19, 2024Angular directives, components and pipes are now standalone by default.22
Unsupported: Angular 18May 22, 2024Experimental zoneless change detection support and server-side rendering improvements.23
Unsupported: Angular 17November 8, 202324Standalone is now the new default for the CLI (Application builder), without the need for Angular modules (NgModule), a new syntax for control flow and documentation website.25
Unsupported: Angular 163 May 2023Partial hydration for Angular Universal server-side rendering, experimental Jest support, and esbuild-based build system for development servers.
Unsupported: Angular 15November 18, 2022Standalone APIs, directive composition API.26
Unsupported: Angular 142 June 2022Typed forms, standalone components, and new primitives in the Angular CDK (component dev kit).27
Unsupported: Angular 134 November 202128Removed deprecated View Engine renderer.
Unsupported: Angular 1212 May 202129Deprecated support for Internet Explorer 11.
Unsupported: Angular 1111 November 202030Experimental Webpack 5 support
Unsupported: Angular 1024 June 202031New Date Range Picker (Material UI library).
Unsupported: Angular 96 February 2020Improved build times, enabling AOT on by default
Unsupported: Angular 828 May 2019Differential loading for all application code, Dynamic imports for lazy routes, Web workers, TypeScript 3.4 support, and Angular Ivy as an opt-in preview.32
Unsupported: Angular 718 October 2018Updates regarding Application Performance, Angular Material & CDK, Virtual Scrolling, Improved Accessibility of Selects. Support for Content Projection using web standard for custom elements, and dependency updates regarding Typescript 3.1, RxJS 6.3 and Node.js 10.33
Unsupported: Angular 64 May 201834Experimental custom element support, added ng update command
Unsupported: Angular 51 November 201735Support for progressive web apps, a build optimizer and improvements related to Material Design.36
Unsupported: Angular 4.318 July 2017HttpClient for making HTTP requests, conditionally disabling animations, new router life cycle events for Guards and Resolvers.

Minor release, meaning that it contains no breaking changes and that it is a drop-in replacement for Angular 4.x.x.

Unsupported: Angular 423 March 201737Added ngIf and ngFor. Backward compatible with Angular 2.
Unsupported: Angular 214 September 2016Initial release

Future releases

Since v9, the Angular team has moved all new applications to use the Ivy compiler and runtime. They will be working on Ivy to improve output bundle sizes and development speeds.38

Each version is expected to be backward-compatible with the prior release. The Angular development team has pledged to do twice-a-year upgrades.

Support policy and schedule

All the major releases are supported for 18 months. This consists of 6 months of active support, during which regularly-scheduled updates and patches are released. It is then followed by 12 months of long-term support (LTS), during which only critical fixes and security patches are released.39

Supported Angular Versions
VersionStatusReleasedActive EndsLTS EndsDuration
^19.0.0ActiveNov 19, 2024May 19, 2025May 19, 20261.5 years
^18.0.0LTSMay 22, 2024Nov 19, 2024Nov 19, 20251.5 years

Angular versions v2 to v17 are no longer under support.40

Libraries

Angular Material

"Angular Material" redirects here. For the library of the same name for AngularJS 1.x, see AngularJS § AngularJS Material.

Angular Material is a UI component library that implements Material Design in Angular.41 It provides a collection of reusable components that adhere to Google's Material Design specifications, aiming to offer a consistent user interface across different devices and platforms.

Angular Material includes a variety of UI components such as buttons, cards, dialogs, grids, and form controls. These components are designed to be customizable and easy to integrate into Angular applications. Additional features of Angular Material include support for responsive design, theming, and accessibility.

Angular Elements

In 2018, Angular 6 introduced Angular Elements, enabling developers to package Angular components as custom web elements, which are part of the web components set of web platform APIs.4243

See also

  • Free and open-source software portal

References

  1. "AngularJS and Angular 2+: a Detailed Comparison". 6 April 2018. https://www.sitepoint.com/angularjs-vs-angular/

  2. "Angular". angular.io. Retrieved 2024-03-26. https://angular.io/guide/what-is-angular

  3. "Stack Overflow Developer Survey 2023". Stack Overflow. Retrieved 2024-06-02. https://survey.stackoverflow.co/2023/?utm_source=social-share&utm_medium=social&utm_campaign=dev-survey-2023

  4. "Angular Docs". angular.io. https://angular.io/guide/architecture

  5. "What's the difference between AngularJS and Angular?". gorrion.io. September 19, 2017. Retrieved 2018-01-28. https://gorrion.io/blog/angularjs-vs-angular/

  6. "Composing with Components · Angular". angular.dev. Retrieved 2024-06-02. https://angular.dev/essentials/components

  7. Chidester, Ashlan (2024-04-23). Discover Angular. ISBN 9798224446049. 9798224446049

  8. "Understanding binding · Angular". angular.dev. Retrieved 2024-06-02. https://angular.dev/guide/templates/binding

  9. "Dependency injection in Angular". angular.dev. Retrieved 2024-06-02. https://angular.dev/guide/di

  10. "Directives · Overview · Angular". angular.dev. Retrieved 2024-06-02. https://angular.dev/guide/directives

  11. "Routing · Overview · Angular". angular.dev. Retrieved 2024-06-02. https://angular.dev/guide/routing

  12. "Angular CLI · Overview · Angular". angular.dev. Retrieved 2024-06-02. https://angular.dev/tools/cli

  13. Żurawski, Paweł (2024-05-09). "Angular SSR: Your server-side rendering implementation guide". Pretius. Retrieved 2024-07-17. https://pretius.com/blog/angular-ssr/

  14. "NG-Conf 2014 keynote". youtube.com. Retrieved 2025-06-10. https://www.youtube.com/watch?v=r1A1VR0ibIQ&t=1227s

  15. @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. https://x.com/angularjs/status/593797019258359809

  16. "Angular: Angular 2 Beta". angularjs.blogspot.it. Archived from the original on 2015-12-18. Retrieved 2016-07-13. https://web.archive.org/web/20151218005753/http://angularjs.blogspot.it/2015/12/angular-2-beta.html

  17. "angular/angular". GitHub. Retrieved 2016-05-04. https://github.com/angular/angular/blob/master/CHANGELOG.md#200-rc0-2016-05-02

  18. Thompson, Mark (2021-11-04). "Angular v13 is now Available". Angular Blog. Retrieved 2024-06-02. https://blog.angular.dev/angular-v13-is-now-available-cce66f7bc296

  19. Gechev, Minko (2023-11-08). "Introducing Angular v17". Angular Blog. Retrieved 2024-05-16. https://blog.angular.dev/introducing-angular-v17-4d7033312e4b#586d

  20. "Angular: Branding Guidelines for AngularJS". Archived from the original on 2017-02-04. Retrieved 2017-03-04. https://web.archive.org/web/20170204142402/http://angularjs.blogspot.com/2017/01/branding-guidelines-for-angular-and.html

  21. Gechev, Minko (2025-05-28). "Announcing Angular v20". Medium. Retrieved 2025-05-28. https://blog.angular.dev/announcing-angular-v20-b5c9c06cf301

  22. Gechev, Minko (2024-11-19). "Meet Angular v19". Medium. Retrieved 2024-11-19. https://blog.angular.dev/meet-angular-v19-7b29dfd05b84

  23. Gechev, Minko (2024-05-23). "Angular v18 is now available!". Medium. Retrieved 2024-06-02. https://blog.angular.dev/angular-v18-is-now-available-e79d5ac0affe

  24. Gechev, Minko (8 November 2023). "Introducing Angular v17". Medium. Angular Blog. Retrieved 12 November 2023. https://blog.angular.io/introducing-angular-v17-4d7033312e4b

  25. Gechev, Minko (8 November 2023). "Introducing Angular v17". Medium. Angular Blog. Retrieved 12 November 2023. https://blog.angular.io/introducing-angular-v17-4d7033312e4b

  26. Gechev, Minko (2022-11-21). "Angular v15 is now available!". Angular Blog. Retrieved 2024-06-02. https://blog.angular.dev/angular-v15-is-now-available-df7be7f2f4c8

  27. Twersky, Emma (2022-06-03). "Angular v14 is now available!". Angular Blog. Retrieved 2022-06-03. https://blog.angular.dev/angular-v14-is-now-available-391a6db736af

  28. Thompson, Mark (4 November 2021). "Angular v13 is now Available". Angular Blog. Retrieved 10 January 2022. https://blog.angular.io/angular-v13-is-now-available-cce66f7bc296

  29. Thompson, Mark (2021-05-12). "Angular v12 is now available". Medium. Retrieved 2021-05-17. https://blog.angular.io/angular-v12-is-now-available-32ed51fbfd49

  30. "Version 11 of Angular Now Available". 4 December 2020. https://blog.angular.io/version-11-of-angular-now-available-74721b7952f7

  31. "Version 10 of Angular Now Available". 25 June 2020. https://blog.angular.io/version-10-of-angular-now-available-78960babd41

  32. Fluin, Stephen (2019-02-08). "A plan for version 8.0 and Ivy". Angular Blog. Retrieved 2019-06-07. https://blog.angular.io/a-plan-for-version-8-0-and-ivy-b3318dfc19f7

  33. Fluin, Stephen (2018-10-18). "Version 7 of Angular — CLI Prompts, Virtual Scroll, Drag and Drop and more". Angular Blog. Retrieved 2019-06-07. https://blog.angular.io/version-7-of-angular-cli-prompts-virtual-scroll-drag-and-drop-and-more-c594e22e7b8c

  34. "Version 6.0.0 of Angular Now Available". Retrieved 4 May 2018. https://blog.angular.io/version-6-of-angular-now-available-cc56b0efa7a4

  35. Fluin, Stephen. "Version 5.0.0 of Angular Now Available". Retrieved 2 November 2017. https://blog.angular.io/version-5-0-0-of-angular-now-available-37e414935ced

  36. "Angular 5 JavaScript framework delayed". 18 September 2017. https://www.infoworld.com/article/3225511/javascript/angular-5-javascript-framework-delayed.html

  37. "Angular 4.0.0 Now Available". angularjs.blogspot.ca. Archived from the original on 2018-01-08. Retrieved 2017-03-23. https://web.archive.org/web/20180108131700/http://angularjs.blogspot.ca/2017/03/angular-400-now-available.html

  38. Fluin, Stephen (6 February 2020). "Version 9 of Angular Now Available — Project Ivy has arrived!". blog.angular.io. Retrieved 22 March 2022. https://blog.angular.io/version-9-of-angular-now-available-project-ivy-has-arrived-23c97b63cfa3

  39. "Angular". angular.io. Retrieved 2019-06-07. https://angular.io/guide/releases#support-policy-and-schedule

  40. "Angular". angular.dev. Retrieved 2025-02-12. https://angular.dev/reference/releases#actively-supported-versions

  41. "Angular Material". material.angular.io. https://material.angular.io/

  42. "How to create Angular 6 Custom Elements and Web Components". 29 September 2018. https://www.freecodecamp.org/news/how-to-create-angular-6-custom-elements-web-components-c88814dc6e0a/

  43. Angular 18 Features & Enhancements. Published [20 May 2025]. Accessed [20 May 2025]. https://www.wedowebapps.com/angular-18-features-enhancements/