Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/baralmanish/validateemail
- Owner: baralmanish
- License: mit
- Created: 2019-05-06T13:21:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-06T16:40:44.000Z (over 5 years ago)
- Last Synced: 2024-09-13T23:25:38.580Z (4 months ago)
- Topics: email-format-validation, email-host-validation, email-tld-validation, email-validation, node-module, npm-package
- Language: JavaScript
- Size: 34.2 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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`