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 🙏

© 2024 – Pkg Stats / Ryan Hefner

email-validator-dns-provider-rules

v1.1.0

Published

Strict Email Validator with checking DNS MX records and email providers rules in browser!

Downloads

57

Readme

Email validator dns provider rules

Email Validator with checking DNS MX records and strict real-life symbols rules

  • more strict and realistic validation for symbols before "@"
  • stricter specific rules for ESP like gmail, yahoo, etc
  • check if domain really exist and works
  • check if domain can receive emails (DNS MX record)
  • your version of invalid reasons text
  • passing your blocklist MX domains
  • everything works in browser! (DNS query by DOH)

Invalid emails that other validators pass:

| email | reason | |-------------------------------|--------------------------------------------------------------------------------------| | [email protected] | Gmail don't allows "" and "-" symbols | | [email protected] | "8avymt4v93mvt3t03.com" isn't real domain and dont have DNS MX records | | s!o#m$e%o^n&[email protected] | 99.99% public email providers allow only "a-z","0-9",".","","-","+" before "@" part | | [email protected] | possibility of adding your blocklist of domains and MX domains |

Usage

npm install email-validator-dns-provider-rules --save
import { isValidEmail, getLastInvalidText } from "email-validator-dns-provider-rules";

if (!await isValidEmail('[email protected]')) {
    alert('Please correct your email: ' + getLastInvalidText());
}

Your version of invalid reasons text

You can use getLastInvalidReasonId() and make dictionary with your version of text:

const INVALID_REASON_TEXT = {
    INVALID_REASON_AMOUNT_OF_AT: 'no @ symbol or too many of them',
    INVALID_REASON_USERNAME_GENERAL_RULES: 'invalid username before @ by general email rules',
    INVALID_REASON_DOMAIN_GENERAL_RULES: 'invalid domain after @ by general domain rules',
    INVALID_REASON_NO_DNS_MX_RECORDS: 'domain after @ has no DNS MX records',
    INVALID_REASON_DOMAIN_IN_BLOCKLIST: 'email domain is in blocklist',
    INVALID_REASON_USERNAME_VENDOR_RULES: 'invalid username before @ by domain vendor rules',
}

Passing your blocklist domains

const yourBlocklistDomains = ['somedomain.com', '...'];
isValidEmail('[email protected]', yourBlocklistDomains);

Passing your DOH provider

You can choose other DNS over HTTPS provider or even create your own

isValidEmail('[email protected]', null, 'https://your-provider-site/dns-query');

Testing

npm test

generating d.ts

npm i -g tsc && npm link tsc
tsc

NPM package

https://www.npmjs.com/package/email-validator-dns-provider-rules