A Node.js module to check if a Github account with the given username exists or not
const ghAccountExists = require('gh-account-exists');
ghAccountExists('shinnn').then(exists => {
console.log(exists); // true
});
npm install gh-account-exists
const ghAccountExists = require('gh-account-exists');
username: String
(a Github username)
options: Object
(gh-get
options)
Return: Promise
The returned promise will be resolved with true
if the account exists, or resolved with false
if it doesn't exist.
// User account
ghAccountExists('tim').then(exists => {
console.log(exists); // true
});
// Organization account
ghAccountExists('nodejs').then(exists => {
console.log(exists); // true
});
// Bot account
ghAccountExists('mention-bot').then(exists => {
console.log(exists); // true
});
// Account that doesn't exist
ghAccountExists('4589iutoiy72euiiujjudjf').then(exists => {
console.log(exists); // false
});
Copyright (c) 2017 Shinnosuke Watanabe
Licensed under the MIT License.