Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jawish/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.
https://github.com/jawish/joi-email-extensions
joi joi-extension joi-extensions joi-validation
Last synced: 21 days ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/jawish/joi-email-extensions
- Owner: jawish
- License: mit
- Created: 2018-05-29T02:05:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-29T02:11:06.000Z (over 6 years ago)
- Last Synced: 2024-10-05T11:18:20.296Z (about 1 month ago)
- Topics: joi, joi-extension, joi-extensions, joi-validation
- Language: JavaScript
- Size: 54.7 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-maldives - Joi-email-extensions - Joi extensions providing email normalization, MX record validation etc.. (Table of Contents / JAVASCRIPT Projects)
README
# 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.
```js
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: '[email protected]',
notAThrowAwayEmail: '[email protected]',
mxValidatedEmail: '[email protected]',
exactDomain: '[email protected]',
onlyUkEuDomains: '[email protected]',
onlyAwesomeDomains: '[email protected]'
})console.log(result)
// { error: null,
// value:
// { normalizedEmail: '[email protected]',
// notAThrowAwayEmail: '[email protected]',
// mxValidatedEmail: '[email protected]',
// exactDomain: '[email protected]',
// onlyUkEuDomains: '[email protected]',
// onlyAwesomeDomains: '[email protected]' } }
```## API
### normalize
Transforms email string to a normalized form. Uses [normalize-email](https://www.npmjs.com/package/normalize-email) under the hood.```js
Joi.string().email().normalize()
```### nonDisposable
Require the email to be from a domain that is not a known disposable email provider.```js
Joi.string().email().nonDisposable()
```### hasMx
Require the email to have valid MX records for handling email.```js
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'`.```js
Joi.string().email().domains(['mydomain.tld'], { mode: 'exact' })
```## Author
[Jawish Hameed](https://github.com/jawish)