1.0.2 • Published 5 years ago

verifier-node v1.0.2

Weekly downloads
43
License
ISC
Repository
github
Last release
5 years ago

Official Library for verifier.meetchopra.com

Installation

npm i verifier-node

or

git clone https://github.com/email-verifier/verifier-node.git

Usage

Verifier-node is email library for validating non-exsistent, invalid domain, disposable emails. Know more

Below is the example of how to use the library

const emailVerifier = require("email-verifier-node");

emailVerifier.verify("email@example.com", "ACCESS_TOKEN")
  .then(response => {
    console.log(response.valid()); // Boolean
    console.log(response.field("status")); // Access any field in response
  });