1.1.3 • Published 6 years ago

email-format-check v1.1.3

Weekly downloads
596
License
MIT
Repository
gitlab
Last release
6 years ago

email-format-check

E-Mail address format validation module. Also check user and domain part max length

logo

version downloads node status

Installation

npm install email-format-check

Syntax email addresses verification based on RFC5321 and RFC5322.

Usage

const isemail = require('email-format-check');
console.log(isemail("user@domain.com"));//true
console.log(isemail("user.domain.com"));//false

Test

mocha or npm test

check test folder and QUICKSTART.js for extra usage.