Socket
Socket
Sign inDemoInstall

joi-email-extensions

Package Overview
Dependencies
83
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    joi-email-extensions

Joi extensions for email normalization, MX record validation, matching a domain pattern and checking for free/disposable email provider domains.


Version published
Maintainers
1
Created

Readme

Source

joi-email-extensions

Joi extensions providing email normalization, MX record validation, checking for emails from free and disposable email providers and various ways to match against a list of email patterns or domains.

Usage

The methods of this extension are chained after the Joi email validator.

import BaseJoi from 'joi'
import JoiEmailExtensions from 'joi-email-extensions'

const Joi = BaseJoi.extend([JoiEmailExtensions])

const schema = Joi.object().keys({
  // Normalize an email
  normalizedEmail: Joi.string().email().normalize(),

  // Check if email is not from known disposable email provider
  notAThrowAwayEmail: Joi.string().email().nonDisposable(),

  // Validate an email by ensuring the domain has MX records
  mxValidatedEmail: Joi.string().email().hasMx(),

  // Validate only emails from a given exact domain
  exactDomain: Joi.string().email().domains(['mydomain.tld']),

  // Validate email against a list of patterns
  onlyUkEuDomains: Joi.string().email().domains([
    '*.uk',
    '*.eu'
  ], { mode: 'glob' }),

  // Allow emails from domains with the word 'awesome' or 'awful'
  onlyAwesomeDomains: Joi.string().email().domains([
    /awe(some|ful)/
  ], { mode: 'regexp' })
})

const result = schema.validate({
  normalizedEmail: 'someEmaIlAdDress@MydoMaiN.tld',
  notAThrowAwayEmail: 'john.doe@mydomain.tld',
  mxValidatedEmail: 'webmaster@google.com',
  exactDomain: 'john.die@mydomain.tld',
  onlyUkEuDomains: 'john.doe@mydomain.eu',
  onlyAwesomeDomains: 'john.doe@awesome.tld'
})

console.log(result)
// { error: null,
//   value:
//    { normalizedEmail: 'someemailaddress@mydomain.tld',
//      notAThrowAwayEmail: 'webmastere@mydomain.tld',
//      mxValidatedEmail: 'webmaster@google.com',
//      exactDomain: 'john.die@mydomain.tld',
//      onlyUkEuDomains: 'john.doe@mydomain.eu',
//      onlyAwesomeDomains: 'john.doe@awesome.tld' } }

API

normalize

Transforms email string to a normalized form. Uses normalize-email under the hood.

Joi.string().email().normalize()

nonDisposable

Require the email to be from a domain that is not a known disposable email provider.

Joi.string().email().nonDisposable()

hasMx

Require the email to have valid MX records for handling email.

Joi.string().email().hasMx()

domains(patterns, options)

Require the email to be from a list of domain names. The domain names to match against are passed as the patterns argument and can be specified as exact strings, or glob patterns or regular expressions. The options argument takes an object containing 'mode' with acceptable values of 'exact' (default), 'regexp' or 'glob'.

Joi.string().email().domains(['mydomain.tld'], { mode: 'exact' })

Author

Jawish Hameed

Keywords

FAQs

Last updated on 29 May 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc