https://github.com/molnarmark/bitbucket-repo-exists
👊 A Promise based library to check if a Bitbucket repo exists
https://github.com/molnarmark/bitbucket-repo-exists
bitbucket bitbucket-repo-exists bitbucket-repos bitbucket-repository nodejs npm repository
Last synced: 3 months ago
JSON representation
👊 A Promise based library to check if a Bitbucket repo exists
- Host: GitHub
- URL: https://github.com/molnarmark/bitbucket-repo-exists
- Owner: molnarmark
- License: mit
- Created: 2018-04-03T15:45:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-03T15:45:46.000Z (over 8 years ago)
- Last Synced: 2025-03-06T04:56:36.125Z (over 1 year ago)
- Topics: bitbucket, bitbucket-repo-exists, bitbucket-repos, bitbucket-repository, nodejs, npm, repository
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bitbucket-repo-exists
A *tiny* promise based library to check if a Bitbucket repository exists.
## Usage
```javascript
const repoExists = require('bitbucket-repo-exists');
repoExists('molnarmark/webtown-go').then(result => console.log(result));
//=> true
repoExists('molnarmark/does-not-exist').then(result => console.log(result));
//=> false
```
## License
- MIT