a simple, fast and robust email validator
npm install node-email-validation
)


``bash
npm install node-email-validation
`
#### javascript
`javascript
var validator = require("node-email-validation");
validator.is_email_valid("test@email.com"); // true
`
#### TypeScript
`typescript
import * as EmailValidator from 'node-email-validation';
EmailValidator.is_email_valid("test@email.com"); // true
``
Yes, it's really all you need to get started as you can see in this live and interactive demo:

For how-to questions and other non-issues,
please use StackOverflow instead of Github issues.
There is a StackOverflow tag called "node-email-validation" that you can use to tag your questions.
We'd greatly appreciate any contribution you make. :)
This project is licensed under the terms of the
MIT license.