Hi there đź‘‹
A lot of things happened in the Angular latest versions that surprised a lot of developers. And with the upcoming incredible features in Angular version 17, It’s the renaissance of Angular!
This article gathers the most remarkable steps walked so far by Angular from v 14 to the upcoming v17.
👉 Angular in its 14
👉 Angular in its 15
👉 Angular in its 16
👉Angular 17
👉Angular 18
đź“ŚAt its 14
đź’ˇ Standalone components (dev prev)
This is one of the exciting features that completely change the Angular structure. It shifts from a module-based app, where components must be declared in a module to be used, to a fully component-based app. This marks the initial step in that direction. An example demonstrating this feature is provided in the “At its 15” section.
đź’ˇ Typed Forms
This feature addresses the number one issue on Angular’s GitHub repository. With typed forms, we benefit from stricter template type-checking. We are informed at compile time, whereas previously, issues would only arise…