The Evolution of Angular: From Legacy AngularJS to Modern Angular 17+

Introduction

Angular has been one of the most popular front-end frameworks in web development for over a decade empowering developers to build dynamic, scalable, and maintainable applications.

From the early days of AngularJS (2010) and later rewritten as Angular (2+), it evolved to meet the growing demands of web performance, modularity, scalability, and developer experience .The framework has continuously evolved to stay ahead of web standards and developer expectations.

From template-based MVC in AngularJS to standalone components, signals, and SSR optimizations in Angular 17+, this framework has continuously adapted to new standards, ensuring developers can build fast, reactive, and maintainable web applications.

In this post , we’ll explore the entire journey of Angular, its version-wise evolution, and how each update transformed the way we build web applications.

What You’ll Learn in This Post

  • The evolution of Angular from AngularJS to Angular 17+.

  • The architectural changes that shaped modern Angular.

  • Why Angular was rewritten after AngularJS.

  • The Ivy revolution, Standalone Components, and Signals introduced in which version .

  • Version-wise highlights and why certain features were introduced.

  • Common interview questions .

The Journey of Angular — Version by Version

AngularJS (1.x) – The Beginning (2010–2016)

Released: 2010 | Language: JavaScript | Architecture: MVC

Concepts Introduced:

  • MVC (Model–View–Controller) architecture

  • Two-way data binding

  • Dependency Injection (DI) via $injector

  • Directives, Filters, and Controllers

  • Template-based MVC pattern

  • $scope and digest cycle

Limitations

  • Slow performance issues for large-scale apps

  • Difficult to maintain for enterprise scale

  • Complex debugging and testing

  • Tight coupling and poor modularity

Angular 2 – The Rebirth (2016)

Released: 2016 | Language: TypeScript | Architecture: Component-Based (replacing MVC)

Concepts Introduced

  • Component-based architecture (replaced Controllers and $scope)

  • TypeScript as the primary language

  • Modules (NgModule) for structured application design

  • Enhanced Dependency Injection system

  • Decorators (@Component, @Injectable, @NgModule)

  • Improved templating and data binding syntax

  • Directives redefined as structural (*ngIf, *ngFor) and attribute directives

  • Services for shared logic and state management

  • Enhanced change detection mechanism

  • Mobile-first and modular framework design

Limitations

  • Steep learning curve due to TypeScript and new architecture

  • No backward compatibility with AngularJS (complete rewrite)

  • Larger initial bundle size leading to slower load times

  • Early performance issues and immature AOT (Ahead-of-Time) compilation

  • Limited ecosystem, tooling, and third-party libraries during initial release

  • Frequent breaking changes during beta and RC stages

Angular 3 (Angular 3 was skipped to align package versions)

After the complete rewrite and major shift introduced in Angular 2, developers naturally expected Angular 3 to be the next release.
However, Angular 3 was never officially released.

The reason? — Version alignment across Angular’s core packages.

At the time, different Angular libraries (like @angular/core, @angular/router, @angular/http, etc.) were being versioned independently.
For example:

  • @angular/core → version 2.3.0

  • @angular/router → version 3.3.0

This version mismatch created confusion among developers and package maintainers.

To synchronize version numbers across all Angular libraries and ensure clarity, the Angular team decided to skip Angular 3 entirely and jump straight to Angular 4 . All major Angular packages (core, router, compiler, etc.) shared the same version number, avoiding confusion for developers and dependency managers. This version skip was a strategic move to simplify Angular’s versioning model and improve developer experience.

Angular 4 – Refinement and Performance Boost (2017)

Released: 2017 | Language: TypeScript | Architecture: Component-Based

Concepts Introduced

  • Improved Ahead-of-Time (AOT) compilation for faster rendering and smaller bundle sizes

  • Smaller and more efficient generated code compared to Angular 2

  • Animation package moved to a separate module (@angular/animations) for better modularity

  • Template improvements, including support for ngIf and ngFor in the same element

  • Introduction of HttpClientModule (simpler and more powerful than the old Http module)

  • Better error messages and debugging experience

  • Enhanced TypeScript compatibility (support for TypeScript 2.1 and 2.2)

  • Improved Router with new features like paramMap for cleaner route parameter handling

Limitations

  • Still not fully stable for large enterprise projects — minor breaking changes persisted

  • Some tooling and library incompatibility issues during migration from Angular 2

  • Learning curve remained steep for developers new to TypeScript or Angular CLI

  • Limited real-time debugging tools and performance profilers compared to React ecosystem

  • Frequent version jumps confused the community (Angular 3 was skipped for internal version alignment)

Angular 5– Progressive Web Apps & Build Optimization (2017)

Released: November 2017 | Language: TypeScript | Architecture: Component-Based

Concepts Introduced

  • Progressive Web App (PWA) support added through the @angular/service-worker module

  • Build Optimizer introduced to reduce bundle size and improve load performance

  • Compiler improvements with enhanced Ahead-of-Time (AOT) compilation by default

  • HttpClient became the standard for HTTP requests (deprecated the old Http module)

  • Router enhancements with events like ActivationStart and ActivationEnd for better control

  • Improved internationalization (i18n) and locale support

  • Angular Universal (server-side rendering) improvements for SEO and performance

  • Better TypeScript 2.4 support and faster compilation

Limitations

  • Limited backward compatibility — upgrades from Angular 4 occasionally broke builds

  • Complex configuration for setting up PWAs and lazy loading

  • AOT compilation errors were difficult to debug for new developers

  • Limited ecosystem maturity for PWA-related tooling

  • CLI still evolving, with incomplete documentation and inconsistent behavior on some setups

Angular 6– CLI Power and RxJS 6 Integration (2018)

Released: May 2018 | Language: TypeScript | Architecture: Component-Based

Concepts Introduced

  • Angular CLI major improvements with ng add and ng update commands for easier library integration and upgrades

  • Angular Elements introduced — allowing Angular components to be used as custom HTML elements (Web Components)

  • RxJS 6 integration with improved operators and better tree-shaking support

  • Ivy Renderer (in experimental phase) introduced internally for faster rendering and smaller bundles

  • Schematics added for automating repetitive development tasks

  • Library support in Angular CLI — made it easy to create and publish reusable Angular libraries

  • Tree-shakable providers for improved bundle optimization

  • Updated Angular Material + CDK with new UI components and accessibility improvements

  • Better workspace configuration (angular.json replacing .angular-cli.json)

Limitations

  • RxJS 6 migration issues — breaking changes in operators required major code refactoring

  • Ivy renderer was still in preview; not ready for production use

  • Some CLI commands unstable during early releases

  • Backward compatibility problems when updating from Angular 5 to 6 due to dependency mismatches

  • Limited documentation for advanced CLI features like schematics

Angular 7 – Virtual Scrolling and CLI Improvements (2018)

Released: October 2018 | Language: TypeScript | Architecture: Component-Based

Concepts Introduced

  • Virtual Scrolling and Drag & Drop features introduced in the Angular CDK (Component Dev Kit) for better performance and modern UX interactions

  • CLI Prompts added — interactive command-line guidance for generating components, modules, and configurations

  • Angular Material Design updates with new visual refinements and accessibility improvements

  • Performance enhancements for large lists and rendering using the Virtual Scroll module

  • Better error handling and helpful messages during compilation

  • Upgraded dependencies: TypeScript 3.1, RxJS 6.3, Node 10+ support

  • Content Projection using <ng-template> improved flexibility in component composition

  • Angular CLI support for Bazel (experimental) — a step towards faster builds and better incremental compilation

Limitations

  • Bazel support experimental and not production-ready

  • Minor compatibility issues during migration from Angular 6 due to dependency updates

  • Virtual scrolling and drag-drop APIs initially lacked extensive documentation and community examples

  • No major framework-level innovations, making it feel more like a “maintenance release” to some developers

  • Build times still relatively long compared to React or Vue during large project compilation

Angular 8 – Ivy Preview and Differential Loading (2019)

Released: May 2019 | Language: TypeScript | Architecture: Component-Based

Concepts Introduced

  • Ivy Renderer (Preview): Introduced as an opt-in preview for faster compilation, smaller bundles, and improved debugging

  • Differential Loading: Automatically generates separate bundles for modern (ES2015+) and legacy browsers (ES5), improving load times

  • Dynamic Imports for Lazy Loading: Simplified route configuration with import() syntax

  • Builder API: Allowed developers to customize Angular CLI build processes

  • Web Worker Support: Easier offloading of heavy computations from the main thread

  • Improved CLI Workspace Configuration: Unified project management within a single workspace

  • Opt-in usage of Bazel: Experimental support for advanced build optimizations

  • Updated RxJS (6.4) and TypeScript (3.4): support for better type safety and performance

  • Enhanced Angular Material & CDK: Improved components, accessibility, and flexibility

Limitations

  • Ivy Renderer was still in preview mode, not ready for production use

  • Differential Loading occasionally caused build inconsistencies in some CI/CD environments

  • Complex migration from Angular 7, especially for large enterprise apps using older RxJS patterns

  • Limited documentation for new CLI and Builder APIs

  • Still large bundle sizes compared to lightweight frameworks like React or Vue

Angular 9 – The Ivy Revolution (2020)

Released: February 2020 | Language: TypeScript | Architecture: Component-Based with Ivy Renderer

Concepts Introduced

  • Ivy Renderer as Default – The long-awaited Ivy engine became the default rendering and compilation pipeline

  • Smaller Bundle Sizes – Significant reduction in app size due to improved tree-shaking and optimized compilation

  • Faster Compilation – Ivy’s incremental compilation made builds and rebuilds much faster

  • Improved Debugging & Error Messages – Clearer stack traces and runtime error handling

  • Better Type Checking in templates for catching issues during compilation

  • Internationalization (i18n) Improvements – Easier extraction, compilation, and runtime rendering of translations

  • AOT Compilation Enabled by Default – Leading to faster startup and more reliable builds

  • Dynamic Component Loading Simplified – No longer required ComponentFactoryResolver

  • Updated Angular CLI with more intuitive logging and build feedback

  • Improved Test Times – Test execution and debugging significantly optimized

Limitations

  • Migration complexity for large legacy projects still present (especially Angular 7 or below)

  • Some third-party libraries initially incompatible with Ivy (needed recompilation using ngcc)

  • Increased build time for very large projects during early Ivy adoption

  • Learning curve for understanding Ivy’s new internal concepts (e.g., locality principle, AOT metadata)

  • Occasional edge-case rendering issues in complex component hierarchies

Angular 10 – Quality, Stability, and Ecosystem Cleanup (2020)

Released: June 2020 | Language: TypeScript | Architecture: Component-Based with Ivy Renderer

Concepts Introduced

  • Focused on stability, quality, and ecosystem alignment rather than major new features

  • TypeScript 3.9 support — improved type checking and build performance

  • New Date Range Picker added to Angular Material for better UX

  • Optional Stricter Type Checking with strict mode in new projects for improved reliability

  • Compiler Updates — enhanced type safety and template type inference

  • Warnings for CommonJS imports to improve tree-shaking and bundle optimization

  • Deprecation cleanup — removed old APIs, outdated dependencies, and unsupported browser configurations

  • Improved Angular CLI with smarter defaults and faster build times

  • Updated tslib, TSLint, and TSLib configurations for better code linting and project hygiene

Limitations

  • No major new framework features, leading some developers to view it as a “maintenance release”

  • Limited innovation beyond internal optimizations

  • Strict mode adoption could initially break legacy codebases

  • Angular Material updates minor compared to previous releases

  • Migration challenges for large enterprise applications with outdated TypeScript versions

Angular 11 – Developer Experience & Hot Reloading Improvements (2020)

Released: Nov 2020| Language: TypeScript | Architecture: Component-Based with Ivy Renderer

Concepts Introduced

  • Faster Builds and Hot Module Replacement (HMR) – enabled real-time updates during development without full reloads

  • Automatic Inlining of Fonts for improved load performance

  • Updated Language Service providing more accurate autocompletion and diagnostics in editors

  • Stricter Types and Default Settings in new projects for more predictable builds

  • Improved Logging and Reporting in Angular CLI for better developer feedback

  • Webpack 5 experimental support for faster builds and improved caching

  • Async Local Storage (Zone.js) improvements for better async context handling

  • TSLint to ESLint migration recommended, aligning with the JavaScript ecosystem trend

  • Improved Error Handling and Debugging for production and development modes

  • Angular Material received updated typography, accessibility enhancements, and performance tweaks

Limitations

  • No major new framework-level features, mostly tooling and developer experience updates

  • HMR setup required manual enabling — not enabled by default initially

  • Webpack 5 support was experimental and unstable in early versions

  • Dependency version mismatches caused issues for projects upgrading from Angular 9/10

  • Large enterprise projects still faced long initial build times despite improvements

Angular 12 – The Ivy Everywhere & Modernization Push (2021)

Released: May 2021 | Language: TypeScript | Architecture: Component-Based with Ivy Renderer (Default Everywhere)

Concepts Introduced

  • Ivy Everywhere – the legacy View Engine was officially deprecated, making Ivy the universal compiler and renderer

  • Nullish Coalescing (??) Operator Support in templates for cleaner conditional expressions

  • Strict Mode by Default for new projects — improved type safety and compile-time checks

  • Angular CLI Modernization – faster builds, better error messages, and improved logging

  • Inline Safer Styles (DOM Sanitization) to prevent XSS vulnerabilities

  • Improved HMR (Hot Module Replacement) integration and default setup

  • Support for Webpack 5 for improved caching and faster rebuilds

  • Enhanced ESBuild and Source Map Support for better debugging

  • Transition to ESLint (TSLint deprecated) for linting and code quality

  • Angular Material received design refinements and better accessibility (A11y)

Limitations

  • Migration from View Engine to Ivy caused compatibility issues with older third-party libraries

  • Some plugins and tools still catching up with Webpack 5 integration

  • Increased build strictness required codebase cleanup during upgrades

  • Limited new “user-facing” features — mostly under-the-hood improvements

  • Occasional memory usage spikes during large builds in Ivy compiler

Angular 13 – Goodbye View Engine & Modern Ecosystem (2021)

Released: November 2021 | Language: TypeScript | Architecture: Component-Based with Ivy Renderer (Full Replacement of View Engine)

Concepts Introduced

  • Complete Removal of View Engine – fully transitioned Angular to Ivy; framework became cleaner and easier to maintain

  • Faster Compilation & Simpler Builds due to Ivy-only pipeline

  • Improved Angular Package Format (APF) – standardized structure for faster library compilation

  • Dynamic Component Creation Simplified – no need for ComponentFactoryResolver anymore

  • Persistent Build Cache in Angular CLI — drastically reduced rebuild times

  • Enhanced TestBed – improved test speed by automatically tearing down test modules

  • Updated RxJS 7.4 support for better performance and operator handling

  • TypeScript 4.4 support with stronger type inference and error reporting

  • Improved Forms API with better typing for form controls and groups

  • Angular Material received accessibility, design updates, and performance optimizations

  • Node.js 12 and 14 compatibility — ensuring support for modern development environments

Limitations

  • Backward compatibility issues for libraries still dependent on the old View Engine

  • Library authors had to update packages to the new APF format

  • Some build and lint tools needed adjustments for Ivy-only compilation

  • No major “visual” or UI-related changes, mostly internal and tooling updates

  • Migration required code cleanup, especially in legacy enterprise codebases

Angular 14 – Typed Forms & Standalone Components (2022)

Released: June 2022 | Language: TypeScript | Architecture: Component-Based with Ivy Renderer

Concepts Introduced

  • Typed Reactive Forms – one of the most requested features; forms now have full type safety with strict type checking for controls and groups

  • Standalone Components (Developer Preview) – reduced dependency on NgModule, allowing components, pipes, and directives to exist independently

  • Extended Template Diagnostics – smarter compiler checks to catch template errors early

  • Streamlined Dependency Injection with better auto-completion and hints

  • CLI Auto-Completion – enhanced Angular CLI with contextual command suggestions in terminals

  • Enhanced Route Title Management – simplified Route.title configuration for SEO and dynamic page titles

  • Improved Test Environment APIs with faster teardown and setup

  • Simplified Bootstrap APIs — easier configuration for starting Angular apps

  • Improved Error Messages & Stack Traces for debugging and runtime clarity

  • Support for TypeScript 4.7 – including improved type inference and node module resolution

Limitations

  • Standalone Components still in developer preview (not fully production-ready yet)

  • Typed Forms migration required significant refactoring in large existing projects

  • Minor compatibility issues with older form libraries and decorators

  • No major visual or Material Design overhaul in this release

  • Some template diagnostics were too strict and flagged valid code in early builds

Angular 15 – Standalone APIs & Simplified Application Structure (2022)

Released: November 2022 | Language: TypeScript | Architecture: Component-Based with Ivy Renderer

Concepts Introduced

  • Standalone Components, Directives & Pipes (Stable) – made production-ready, removing the need for NgModule in many use cases

  • Simplified BootstrappingbootstrapApplication() API replaced traditional AppModule setups

  • Functional Router Guards & Resolvers – introduced functional-style APIs for cleaner route handling

  • Directive Composition API – allowed directives to extend and reuse logic more effectively

  • Optimized Image Directive (NgOptimizedImage) – automatic image optimization and lazy loading for better performance

  • Improved Stack Traces & Error Reporting – more developer-friendly runtime error logs

  • Enhanced Angular CLI with better tree-shaking, caching, and optimized builds

  • Enhanced Reusability – simplified component imports across projects

  • Automatic Route Title Updates via the Router configuration

  • Improved Material Design Components aligned with modern UX patterns

Limitations

  • Migration complexity for legacy projects still using traditional NgModule structure

  • Learning curve for functional router APIs and bootstrap changes

  • Third-party libraries needed updates to fully support standalone components

  • Limited tooling support (e.g., some IDEs not immediately adapted to new APIs)

  • Partial Ivy debugging tools still improving for complex dependency graphs

Angular 16 – Signals & Reactivity Revolution (2023)

Released: May 2023 | Language: TypeScript | Architecture: Component-Based with Ivy Renderer

Concepts Introduced

  • Angular Signals (Developer Preview) – introduced a new reactivity model inspired by fine-grained state tracking (similar to Reactivity in Solid.js or Vue 3)

  • Rewritten Reactivity Core – improved change detection performance and predictable UI updates

  • Hydration for Server-Side Rendering (SSR) – allowed reusing existing DOM on the client, reducing load time and improving SEO performance

  • Improved Server-Side Rendering (Angular Universal) – faster, more reliable hydration pipeline

  • Non-Destructive Hydration – enabled smooth server-to-client handoff for dynamic content

  • Revised Dependency Injection (DI) system — better tree-shaking and runtime performance

  • Standalone APIs Enhanced – improved ergonomics and support across the Angular ecosystem

  • New Input Binding Syntax – simpler signal-driven inputs and outputs between components

  • Improved Developer Tools Integration (Angular DevTools) for Signals debugging

  • Support for TypeScript 5.0+ — bringing better type performance and inference

  • Improved Build Performance with partial compilation caching

Limitations

  • Signals API still in developer preview — not yet fully production-ready

  • Learning curve for developers unfamiliar with reactive programming models

  • Tooling support for Signals (DevTools, ESLint, IDEs) still catching up

  • Migration challenges from RxJS-heavy applications that didn’t yet benefit from Signals

  • SSR hydration setup required additional configuration and server tuning

Angular 17 – The Next-Gen Angular (2023)

Released: November 2023 | Language: TypeScript | Architecture: Component-Based with Ivy & Signals Reactivity

Concepts Introduced

  • Stable Signals API – Signals became production-ready, offering a modern, fine-grained reactivity model replacing much of Angular’s traditional change detection

  • New Control Flow Syntax (@if, @for, @switch) – replaced structural directives (ngIf, ngFor, etc.) with faster, cleaner, and more readable template syntax

  • Deferrable Views (@defer) – introduced lazy rendering for parts of the UI, improving performance and reducing time-to-interactive

  • Brand-New Build System (Powered by Vite & esbuild) – replaced Webpack as the default, offering drastically faster builds and hot reloads

  • Improved SSR with Full Hydration Support – smoother transitions between server-rendered and client-rendered content

  • Automatic Route-Based Code Splitting – improved lazy loading efficiency with faster route rendering

  • Optimized CLI – simplified configuration and built-in support for Vite-based builds

  • Improved Developer Experience – instant HMR, smaller rebuild times, and simplified error output

  • Updated Angular Material (Material 3 / MDC Components) – new theming, typography, and accessibility improvements

  • Support for TypeScript 5.2+ – further enhancing speed and type precision

  • Refined Standalone Component APIs – all Angular features now compatible without NgModule

Limitations

  • Migration to the new template syntax (@if, @for) requires code refactoring

  • Vite-based build may need plugin adjustments for older Webpack-dependent libraries

  • Some ecosystem packages still catching up with the new control flow syntax and build pipeline

  • Learning curve for developers moving from RxJS-heavy architectures to Signals-first design

  • Experimental APIs (like partial hydration for complex cases) still evolving

Angular 19 – Standalone Defaults, Hydration & Signal Maturity (2024)

Released: November 2024 | Language: TypeScript | Architecture: Component-Based with Ivy + Signals

Concepts Introduced

  • Standalone components by default (no need to manually specify standalone: true) – reducing boilerplate.

  • Incremental hydration (SSR): enabling parts of the app to hydrate lazily for better performance.

  • Enhanced signal APIs: linkedSignal, resource() APIs for async/reactive workflows.

  • Improved Hot Module Replacement (HMR) and build‐time tooling refinements.

  • Updated TypeScript support (TS 5.6) and improved developer ergonomics.

Limitations

  • While standalone defaults help new apps, legacy projects may still have modules and need migration effort.

  • Incremental hydration still maturing: edge cases may require workarounds.

  • Some libraries may not yet fully support new signal/resource APIs or hydration modes.

  • Build/tooling changes may require updates in CI/CD pipelines.

Angular 20 – Stable Signals, Zoneless Maturity & Modern Templates (2025)

Released: May 2025 | Language: TypeScript | Architecture: Component-Based with Ivy + Stable Signals + Zoneless

Concepts Introduced

  • Zoneless change detection now in developer preview without Zone.js dependency, paving the way for full zoneless mode.

  • Template literals and new operators in templates (e.g., * exponentiation, in, void) for expressive template logic.

  • Stable signal-based reactivity is foundation: signals now fully production-ready reactive primitives.

  • Enhanced SSR & hydration capabilities: improved performance, streamlined tooling, and better developer experience.

  • Enhanced type checking for host bindings, updated tooling and CLI improvements, upgrade to TypeScript 5.8.

Limitations

  • Some APIs still shifting (though stable) — migration might still need attention for large legacy codebases.

  • Zoneless mode is still maturing; full zone-less production mode may require careful testing.

  • Third-party ecosystem still catching up for full signal/zoneless compatibility.

  • Template operator expansion may lead to older code needing refactoring for consistency.

Common Interview Questions

  1. What are the key differences between AngularJS and Angular 2+?
    AngularJS used JavaScript and MVC, while Angular 2+ is TypeScript-based, component-driven, and far more performant.

  2. Why did Google rewrite AngularJS instead of upgrading it?
    To overcome scalability, performance, and maintainability issues that couldn’t be fixed in AngularJS.

  3. What is the role of TypeScript in Angular?
    TypeScript provides static typing, modern ES features, and improved tooling for large, enterprise-scale applications.

  4. What are components and how do they differ from controllers?
    Components encapsulate UI, data, and behavior in reusable units, replacing AngularJS controllers and $scope.

  5. What are the benefits of modular architecture in Angular?
    It enhances code organization, reusability, scalability, and simplifies testing and maintenance.

  6. Explain the difference between JIT and AOT compilation.
    JIT compiles templates at runtime, while AOT pre-compiles at build time for faster startup and better optimization.

  7. What is the Ivy compiler and how does it improve performance?
    Ivy creates smaller bundles, speeds up compilation, and improves debugging with more efficient change detection.

  8. What are Standalone Components and why were they introduced?
    They remove the dependency on NgModules, simplifying application structure and reducing boilerplate code.

  9. What are Angular Signals and how do they improve reactivity?
    Signals provide fine-grained reactivity that updates only affected components, improving app performance and predictability.

  10. How does Angular 17 handle control flow differently?
    It introduces new syntax like @if, @for, and @switch for cleaner, faster, and more readable templates.

Angular’s evolution from AngularJS to Angular 17+ reflects more than a decade of progress — transforming from a traditional MVC framework to a fully reactive, modern, and high-performance platform. Each version of Angular brought smarter tooling, cleaner syntax, and enhanced performance — enabling developers to focus more on building experiences and less on managing complexity.

From templates to signals, Angular continues to redefine the future of scalable web development.

If you’re starting your Angular journey today, begin directly with Angular 17+ . you’ll experience a framework that’s modern, lightweight, reactive, and designed for the next era of the web.

Thank you for reading The Evolution of Angular: From Legacy AngularJS to Modern Angular 17+ . I hope this post clarified Angular’s journey from AngularJS to Angular 17+ and inspires you to build application with today’s modern Angular.

Keep learning, keep evolving, and build fast, reactive, and modern web applications with Angular.