is-gmail-account-valid
v1.0.5
Published
Check whether a gmail account is valid or not
Downloads
3
Maintainers
Readme
Find out if a gmail address is used or not
A simple module verify whether a gmail address is valid. Made after I read x0rz's article on the topic and the techique used.
Credit / how this works.
This is only a couple of minutes work. All credit belongs to x0rz. For no particular reason, versions since 1.03 use saml's technique.
Usage
const isGmailAccountValid = require('is-gmail-account-valid')
isGmailAccountValid('mike.maccana', function(err, result){ console.log(err, result) })
result
will be true
for valid accounts and false
for invalid accounts.