email-providers
A list of common eMail providers. Thanks to @goware!
The npm package (not this Git repo) contains the following data:
- roughly 8k domains of email providers in
all.json
, and - roughly 360 with a Majestic Million rank of
< 100000
in common.json
.
Installing
npm install email-providers
Usage
The package published to npm contains two files all.json
and common.json
. The index.js
entrypoint also exports all.json
.
import all from 'email-providers/all.json' assert {type: 'json'}
import common from 'email-providers/common.json' assert {type: 'json'}
import alsoAll from 'email-providers'
import {createRequire} from 'module'
const require = createRequire(import.meta.url)
const all = require('email-providers/all.json')
const common = require('email-providers/common.json')
all.length
common.length
all[0]
common[0]
Contributing
If you have a question, found a bug or want to propose a feature, have a look at the issues page.