2.0.0 • Published 5 years ago

node-email-validate v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

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.

License

MIT

2.0.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago