2.0.0 • Published 9 years ago

repo-exists v2.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

repo-exists Build Status

Check if a GitHub repo exists

See repo-exists-cli for the CLI version.

Usage

$ npm install --save repo-exists
var repoExists = require('repo-exists');

repoExists('h5bp/html5please', function (error, exists) {
	if (error) {
		throw error;
	}

	console.log(exists);
	//=> true
});

License

MIT © Arthur Verschaeve