1.0.0 • Published 7 years ago

@joachimdalen/github-org-exists v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

github-org-exists

Check if a GitHub org name is taken.

Installation

npm install @joachimdalen/github-org-exists

Usage

const githubOrgExists = require('@joachimdalen/github-org-exists');

(async () => {
	const res = await githubOrgExists('dalenapps');

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

Tests

npm test

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.