AI links open with a title + excerpt (these tools can't fetch the page themselves) — use "Copy full article" to paste the complete text for a fuller summary.
Angular 5.0.0 was released on 01-November-2017. This is a major release announced by Angular Team - Pentagonal-donut__.

Given below are useful & major points from Angular 5
- The build optimizer is a tool and it is increasing the boost of your application & decorators are used by the compiler & removed from runtime code.
- Angular Universal State Transfer API and DOM Support- Added Server side render and Domino to platform-server.
- Improved the Angular compiler to support incremental compilation. This provides faster rebuilds, especially for production builds and builds with AOT(Ahead of Time)
- Improved decorator support for this action, you can now use a Lambda instead of a named function
Component({ provider: [{provide: SOME_TOKEN, useFactory: () => null}] }) export class MyClass {}
- In Angular we have relied on the browser to provide number, date, and currency formatting using browser i18n APIs. This resulted in the need for a polyfill for most developers
Replace the ReflectiveInjector with StaticInjector : In order to remove even more polyfills, we’ve replaced the ReflectiveInjector with the StaticInjector. This injector no longer requires the Reflect polyfill, reducing application size for most developers.
Before
ReflectiveInjector.resolveAndCreate(providers);
After
Injector.create(providers);
- Angular Forms adds updateOn Blur / Submit:You can now run validation and value updates on `blur` or on `submit`, instead of on every input event
Before
After
<input name="firstName" ngModel [ngModelOptions]="{updateOn: 'blur'}">
or
Comments
Be the first to comment.