Identifies email addresses or domains names that belong to colleges or universities
npm install academic-email-verifierbash
npm install --save academic-email-verifier
`
Usage
$3
`javascript
import { Verifier } from 'academic-email-verifier';
`
$3
`javascript
// check if email address is a valid academic email address
let isAcademic = await Verifier.isAcademic('benny@stanford.edu');
`
$3
`javascript
// get full institution name
let institutionName = await Verifier.getInstitutionName('megidish@mit.edu');
`
Supported Environments ##
- 🖥 Node.js
Documentation ##
- 👨🏼💻 API,
- 👩🏼🏫 Examples,
- 📜 Change log,
- 🖋 License
Support ##
If you're having any problem, please raise an issue on GitHub and we'll be happy to help.
Contribute ##
- 👾 Issue Tracker,
- 📦 Source Code
Before submitting a pull request, please make sure that you include tests, and that jshint runs without any warnings: Download VSCode extension.
Test ##
Run the test suite by executing:
`sh
$ npm test
``