NodeJS Email Validator, Checker and MX Checker
npm install node-email-check    
NodeJS Email Validator, Checker and MX Checker
You can check email address with mx check, syntax check and domain check.
``bash
npm install node-email-check
yarn add node-email-check
`
javascript
const emailCheck = require('node-email-check');// async request with mx check
await emailCheck.isValid('example@email.com');
// sync request without mx check
emailCheck.isValidSync('example@email.com');
`Testing
`bash
npm run test
`Contributing
1. Fork it
2. Create your feature branch:
git checkout -b my-feature-or-fix
3. Commit your changes: git commit -am 'Add some feature or fix'
4. Push to the branch: git push origin my-feature-or-fix`Teoman Tuncer - Author (@teomantuncer) - tuncer.dev
GPL3.0