Identifies email addresses or domains names that belong to colleges or universities. Retrieves institution name (and sometime role [faculty, student]).
npm install --save academic-email-verifierconst verifier = require('academic-email-verifier');// check if email address is a valid academic email address
verifier.isAcademic('benny@stanford.edu')
.then(result => console.log(result))
.catch(error => console.log(error));// get full institution name
verifier.getInstitutionName('benny@stanford.edu')
.then(result => console.log(result))
.catch(error => console.log(error));- 👨🏼💻 API,
- 👩🏼🏫 Examples,
- 📜 Change log,
- 🖋 Licence
If you're having any problem, please raise an issue on GitHub and we'll be happy to help.
- 👾 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.
Run the test suite by executing:
$ npm testThe database of this project is based on the ruby gem swot database. this database constitutes a significant part of this project.
Author: Benny Megidish.