I want to create a form where the user will enter his email. I\'d like to validate email format client-side.
Is there any generic email validator in Angular 2?
I'm using : https://www.npmjs.com/package/ng2-validation
npm install ng2-validation --save ng2-validation
I'm not responding exaclty your question but for a lot of common scenarios you can find a custom validator already implemented
example in your case : email : ['', [CustomValidators.email]]
Best Reagards,