node-email-validation

1.0.4 • Public • Published

node-email-validation

A email validation package for NodeJS. A simple module to validate an e-mail address.

travis build version size node

Installation

Install via NPM:

npm install node-email-validation
 

Usage

javascript

 
var validator = require("node-email-validation");
 
validator.is_email_valid("test@email.com"); // true
 

TypeScript

 
import * as EmailValidator from 'node-email-validation';
 
EmailValidator.is_email_valid("test@email.com"); // true
 
 

Yes, it's really all you need to get started as you can see in this live and interactive demo:

Edit Button

Questions

For how-to questions and other non-issues, please use StackOverflow instead of Github issues. There is a StackOverflow tag called "node-email-validation" that you can use to tag your questions.

Contributing

We'd greatly appreciate any contribution you make. :)

License

This project is licensed under the terms of the MIT license.

/node-email-validation/

    Package Sidebar

    Install

    npm i node-email-validation

    Weekly Downloads

    979

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    7.18 kB

    Total Files

    8

    Last publish

    Collaborators

    • manavshrivastava