2.0.0 • Published 5 years ago
node-email-validate v2.0.0
Email Validation in NodeJS
Validate any email from any provider in your NodeJS app. Feel more confident that valid emails are being used in your applications.
Installation
npm i node-email-validate
Usage
const validateEmail = require("node-email-validate");
validateEmail("contact@example.com")
.then((resp) => {
// do something with the response.
console.log(resp);
})
.catch((err) => {
// handle the error.
console.log(err);
});
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.