Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/monyasau/emailcheck
- Owner: monyasau
- License: mit
- Created: 2024-04-16T16:25:21.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-05-20T13:53:53.000Z (9 months ago)
- Last Synced: 2024-12-13T17:52:04.699Z (about 2 months ago)
- Topics: beginner-friendly, beginners, first-contributions, first-robotics-competition, open-source, open-to-contribution, opensource, opentocontribution
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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