Shipping Angular Elements as Web Components

Creating custom elements in Angular and exporting them as web components is real simple. See how I made a custom subscription element in Angular and used it as native HTML element.

Asynchronous Validation in Angular

It's very easy to set up asynchronous validation in Angular Form. You can check whether provided email/date/name etc. already exists in the server with an HTTP call.

Angular Form Validation on Blur and Submit

updateOn: 'blur' and updateOn: 'submit' are the options we were really craving for while working with Angular Forms. Now it's available out of the box and you don't need any custom implementations.