Package Exports
- email-disposable
- email-disposable/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (email-disposable) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Email Disposable
A regularly updated list of disposable and temporary email domains, ideal for validating user sign-ups, preventing spam, and filtering fake accounts.
Installation
Via NPM:
npm install email-disposableVia Yarn:
yarn add email-disposableUsage
Check if an email is disposable:
import isDisposable from "email-disposable"
console.log(isDisposable("john@mailinator.com")) // true
console.log(isDisposable("john@0wnd.ro")) // true
console.log(isDisposable("john@gmail.com")) // falseGet the full domain list:
import { domainsList } from "email-disposable"
console.log(disposable.length) // 117000+Updates
This list combines multiple open-source sources to stay up-to-date with newly discovered disposable providers.
Use this command to get the latest domains:
npm run fetchSources
- disposable-email-domains/disposable-email-domains
- TempMailDetector/Temporary-Email-Domain-Blocklist
- adamloving/temporary-email-address-domains
- jamesonev/disposableEmailDomains.txt
- GeroldSetz/emailondeck.com-domains
- disposable/static-disposable-lists
- Propaganistas/Laravel-Disposable-Email
- wesbos/burner-email-providers
- disposable/disposable-email-domains
- unkn0w/disposable-email-domain-list
- tompec/disposable-email-domains
- flotwig/disposable-email-addresses
- 7c/fakefilter
- daisy1754/jp-disposable-emails
- stopforumspam.com
- FGRibreau/mailchecker
License
About
email-disposable is an open-source component of Gatekeepr, a privacy-first API that blocks fake users and platform abuse by analyzing emails, IPs, domains, and user agents in real time.