An open API service indexing awesome lists of open source software.

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

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