1. email-validator
Provides a fast, pretty robust e-mail validator. Only checks form, not function.
email-validator
Package: email-validator
Created by: manishsaraan
Last modified: Thu, 16 Jun 2022 09:25:47 GMT
Version: 2.0.4
Downloads: 2,877,022
Repository: https://github.com/manishsaraan/email-validator

Install

npm install email-validator
yarn add email-validator

email-validator

A simple module to validate an e-mail address

travis build
version
downloads
XO code style

Installation

Install via NPM:

 npm install email-validator

Usage

javascript

 
var validator = require("email-validator");

validator.validate("[email protected]"); // true

TypeScript

 
import * as EmailValidator from 'email-validator';

EmailValidator.validate("[email protected]"); // true


Contribute

Contributions welcome! Check the LICENSE file for more info.

Meta

Distributed under the unlicense public domain. See LICENSE for more information.

https://github.com/manishsaraan/email-validator

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin