1.0.4 • Published 3 years ago

world-universities-search v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

University search

Fast and fuzzy search for universities around the world Provides email verification

Usage

const {isUniversityEmail} = require('world-universities-search')
isUniversityEmail('someone.else@usb.ch') // true
isUniversityEmail('someone.else@migros.ch') // 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('someone.surname@ethz.ch')

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.