npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@emextools/email-verifier-plus

v1.0.9

Published

A tool for verifying if email addresses are valid and deliverable.

Readme

📣 Introduction

Use this API if you want to clean your email database and get rid of bad emails that are guaranteed to hard bounce and hurt your reputation which also negatively impacts your deliverability. Every email list should be regularly cleaned and updated otherwise you will be wasting a lot of money.

Our verifications are done using various methods using SMTP, DNS, HTTP, Grammar checks and many others in order to ensure that we get the best results.

The main score is under the reachable property of the response and is represented by a final verdict for each email address; it consists of 3 possible fields for each email:

  • yes meaning the email address was found and it is safe to send
  • no meaning the email was not found and you're likely to bounce if you send to it
  • unknown meaning we're not sure, possible catchall email address

⚡ Usage

You will need a subscription and an API key for this API. A free plan is also available and it allows you to perform 20 verifications/day.

To get a KEY visit the API page.

import {checkEmailExists} from "email-verifier-plus";

...

const result = await checkEmailExists(apiKey, "[email protected]")

// ... json result

{
    "email": "[email protected]",
    "reachable": "no",
    "syntax": {
        "username": "mark",
        "domain": "apple.com",
        "valid": true
    },
    "smtp": {
        "host_exists": true,
        "full_inbox": false,
        "catch_all": false,
        "deliverable": false,
        "disabled": false
    },
    "gravatar": null,
    "suggestion": "",
    "disposable": false,
    "role_account": false,
    "free": false,
    "has_mx_records": true
}

🚀 Features

The following properties can also be found in the response:

  • free: is it a free email address (yahoo, gmail etc)
  • role_account: is it a role address (admin, info, support etc)
  • syntax: syntax check
  • suggestion: suggestion (if mispelled)
  • disposable disposable (if the domain is known to be from disposable email boxes)
  • has_mx_records DNS check (has mx records or not)

Use them wisely to figure out if the email is valid for your particular use case.

📌 Use cases

  • blocking free emails from registering
  • blocking disposable emails from registering
  • blocking/detecting catch-all domains
  • cleaning email lists to avoid hard bounces
  • suggesting fixes for mispelled domains
  • email list cleaning