https://github.com/hookfang/email-verifier
This is a NPM package that allows users to verify the E-mail entered by the user. It only checks the syntax of the E-mail ID entered by the user. Gives the option to provide different domain names to change the Regex of the validator
https://github.com/hookfang/email-verifier
email email-verifier module npm npm-module npm-package npmjs regex validate
Last synced: 6 days ago
JSON representation
This is a NPM package that allows users to verify the E-mail entered by the user. It only checks the syntax of the E-mail ID entered by the user. Gives the option to provide different domain names to change the Regex of the validator
- Host: GitHub
- URL: https://github.com/hookfang/email-verifier
- Owner: hookFang
- License: mit
- Created: 2020-12-26T05:13:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-12T16:05:22.000Z (about 2 years ago)
- Last Synced: 2025-04-19T12:06:05.559Z (10 days ago)
- Topics: email, email-verifier, module, npm, npm-module, npm-package, npmjs, regex, validate
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@hookfang/email-verifier
- Size: 10.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Email Verifier

[](https://www.npmjs.com/package/@hookfang/email-verifier)

[](https://github.com/hookFang/email-verifier/blob/master/LICENSE)This is a NPM package that allows users to verify the E-mail entered by the user. It only checks the syntax of the E-mail ID entered by the user.
Gives the option to provide different domain names to change the Regex of the validator## NPM Install
npm i @hookfang/email-verifier
## Usage
```sh
# Import Package
import EmailVerifier from "@hookfang/email-verifier"#Add any specific Domain names, by default Domain Name: "com"
EmailVerifier.domainsValid({ domainsValid: ["com", "bix", "gov"] });#Verify E-mail- Returns a true value if its a valid E-mail
EmailVerifier.verify("[email protected]")