Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/monyasau/emailcheck

An opensource tool for validating email
https://github.com/monyasau/emailcheck

beginner-friendly beginners first-contributions first-robotics-competition open-source open-to-contribution opensource opentocontribution

Last synced: 14 days ago
JSON representation

An opensource tool for validating email

Awesome Lists containing this project

README

        

# Contributing to emailcheck
If you would like to contribute to this project, refer to our contribution guide (https://github.com/monyasau/emailcheck/blob/main/CONTRIBUTING.md)
# Installation:
npm i @monyasau/emailcheck

# Usage:

yourCode.js:
const emailCheck = require("@monyasau/emailcheck") //import the package
console.log(emailCheck("[email protected]")); // returns "Email is valid"
console.log(emailCheck("hello world")); // returns "Email is invalid"
These code will return: A valid and invalid email verification respectively