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

@emailverifier/sdk

v0.1.31

Published

Email verifier SDK with free offline checks, the emailverifier.dev API client, and a CLI.

Readme

Email Verifier SDK

Offline email analysis, a typed client for emailverifier.dev, and a CLI in one package.

The offline functions use bundled data and make no network requests. They can identify syntax problems, disposable providers, free mailbox providers, role addresses, and common provider typos. They cannot confirm whether a mailbox exists or will accept mail.

Install

npm install @emailverifier/sdk

Node.js 20 or newer is required. The package has no runtime dependencies and sends no telemetry.

Free offline analysis

import { analyzeEmail } from '@emailverifier/sdk/offline'

const result = analyzeEmail('[email protected]')

console.log(result.checks.syntax)
console.log(result.checks.disposable)
console.log(result.checks.freeProvider)
console.log(result.checks.roleBased)
console.log(result.suggestion)

The result intentionally has no deliverable field. DNS, SMTP recipient acceptance, and catch-all detection require the hosted API.

You can also import focused helpers:

import {
  isDisposableDomain,
  isFreeEmailProvider,
  isRoleAddress
} from '@emailverifier/sdk/offline'

Hosted verification

Create a project at emailverifier.dev, then use its API key:

import { EmailVerifier } from '@emailverifier/sdk'

const client = new EmailVerifier({
  apiKey: process.env.EMAILVERIFIER_API_KEY!
})

const verification = await client.verify('[email protected]')
const domain = await client.checkDomain('example.com')
const usage = await client.getUsage()

verify and checkDomain each use one project credit. getUsage does not use a credit. The client does not retry failed requests automatically.

CLI

Run local analysis without an account or API key:

npx @emailverifier/sdk check [email protected]
npx @emailverifier/sdk check [email protected] --json

Remote commands read the key from the environment. API keys are deliberately not accepted as command-line arguments because command histories and process lists can expose them.

export EMAILVERIFIER_API_KEY=ev_your_project_key

npx @emailverifier/sdk verify [email protected]
npx @emailverifier/sdk domain example.com
npx @emailverifier/sdk usage

Use EMAILVERIFIER_BASE_URL only when testing against a local or self-selected API origin.

Data updates

The disposable-domain snapshot comes from disposable/disposable-email-domains and includes additional maintained aliases. Its license is recorded in THIRD_PARTY_NOTICES.md.

The scheduled GitHub workflow validates upstream data, commits changed snapshots, and publishes a tested patch release. Configure npm Trusted Publishing for GitHub owner usamaejaz, repository emailverifier, workflow update-data.yml, environment npm, and the npm publish action.

License

MIT