A tiny promise based library to check if a GitHub repository exists.
const repoExists = require('github-repo-exists'
5CB3
span>);
repoExists('molnarmark/nimism.co').then(result => console.log(result));
//=> true
repoExists('molnarmark/does-not-exist').then(result => console.log(result));
//=> false
- MIT