Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/baralmanish/validateemail

Check if email is valid
https://github.com/baralmanish/validateemail

email-format-validation email-host-validation email-tld-validation email-validation node-module npm-package

Last synced: about 2 months ago
JSON representation

Check if email is valid

Awesome Lists containing this project

README

        

# Introduction
This is the plugin to check the provided email is valid or not.
This plugin checks following things:
- valid email format
- valid tld
- valid email host

## Installation
- `npm i email-validation-pro`
- `yarn add email-validation-pro`

## Implementation
```javascript
var validate = require('email-validation-pro');
validate.email(email); // check without email host
validate.email(email, true); // check with email host
```

## Test
`yarn test`