Member-only story
Web Development
What’s New in Angular 10
The new features and breaking changes the Google-developed web framework brought to us
Angular 10 — the major release that spans the entire platform, including the framework, Angular Material, and the CLI — is available since June 24. Now, what does this mean?
Just like many members of the Angular community, I tried to follow the news and see what Angular 10 brought to us. I read many articles, but I felt like I’m a newbie in the programming world. My years of experience with Angular didn’t help me get a good understanding of what those articles were talking about.
So, I decided to write a new article presenting what’s new in Angular 10, making it all easier to digest.
Before I walk you through the most important changes and what they mean for you, your project, and the Angular landscape, I’ll explain a couple of interesting things and demystify the accompanying jargon. Let’s get started.
Lingo
Microsyntax
The Angular microsyntax lets you configure a directive in a compact, friendly string. The microsyntax parser translates that string into attributes on the <ng-template>
. So instead of <ng-template ngFor
…