world-universities-search
v1.0.4
Published
world-universities-csv ====================== This is a forked copy of two CSV files with universities in the US and around the world.
Downloads
5
Maintainers
Readme
University search
Fast and fuzzy search for universities around the world Provides email verification
Usage
const {isUniversityEmail} = require('world-universities-search')
isUniversityEmail('[email protected]') // true
isUniversityEmail('[email protected]') // flase
isUniversityEmail('42') // flase
Fuzzy match
// Universitatsspital => Universitatsspital
const {find} = require('world-universities-search')
find('Universitatspital~2')
Find by email
const {findByEmail} = require('world-universities-search')
findByEmail('[email protected]')
It's a forked version of forked version:
world-universities-csv
This is a forked copy of two CSV files with universities in the US and around the world.
I have modified this to only include the University name and the .edu domain name that is associated with the university. This is useful for identifying a college based on an email address.