Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
disposable-email-checker
Advanced tools
Email domain validation against a list of temporary email domains/providers
A collection of domains for disposable email services like 10MinuteMail and GuerrillaMail. Also, some 🛠 to make your life easier.
Use it to validate email addresses on sign up, or just to see how many real email addresses you have in your system.
A file containing a sorted list of domains, one per line.
curl https://raw.githubusercontent.com/andreis/disposable/master/domains.txt
A file containing a sorted array of domains, in JSON format.
curl https://raw.githubusercontent.com/andreis/disposable/master/domains.json
Install the npm package disposable-email
. Validate synchronously or with a callback.
npm i --save disposable-email
var disposable = require('disposable-email');
disposable.validate('gmail.com');
// true
disposable.validate('gmail.com', console.log);
// undefined
// null true
import "github.com/andreis/disposable"
if disposable.Domain("gmail.com") {
panic("Uh oh!")
}
To update the list of domains run .generate
(requires python3
), and optionally submit a PR.
$ ./.generate
Fetched 1110 domains
- 312 domain(s) added
- 110 domain(s) removed
Production: https://rawcdn.githack.com/andreis/disposable/master/domains.json
Development: https://raw.githack.com/andreis/disposable/master/domains.json
FAQs
Email domain validation against a list of temporary email domains/providers
We found that disposable-email-checker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.