Bitbucket API client for Browser and Node.js
Bitbucket API docs: https://api.bitbucket.org
BITBUCKET CLOUD API CHANGING NOTICE: https://developer.atlassian.com/cloud/bitbucket/bitbucket-api-changes-gdpr
BITBUCKET CLOUD API MIGRATION GUIDE: https://developer.atlassian.com/cloud/bitbucket/bbc-gdpr-api-migration-guide
via npm:
$ npm install bitbucket --save
via yarn:
$ yarn add bitbucket
<script src="https://unpkg.com/bitbucket/dist/bitbucket.min.js"></script>
<script>
const bitbucket = new Bitbucket()
</script>
const Bitbucket = require('bitbucket')
const bitbucket = new Bitbucket()
You can set the APIs' baseUrl
and modify some behaviors (e.g. request timeout etc.) by passing a clientOptions object to the Bitbucket
constructor.
const clientOptions = {
baseUrl: 'https://api.bitbucket.org/2.0',
headers: {},
options: {
timeout: 10
}
}
const bitbucket = new Bitbucket(clientOptions)
This enables you to use bitbucket
with both Bitbucket Cloud and Bitbucket Server.
bitbucket.authenticate({
type: 'basic',
username: 'username',
password: 'password'
})
async/await
try {
let { data, headers } = await bitbucket.<namespace>.<api>({ ...params })
} catch (err) {}
Promise
bitbucket.<namespace>
.<api>({ ...params })
.then(({ data, headers }) => {})
.catch(err => {})
Callback
bitbucket.<namespace>.<api>({ ...params }, (err, { data, headers }) => {})
Notes:
<namespace>
is one of the Namespace Names<api>
is one of the API Names
addon
, hook_events
, webhooks
, repositories
, branchrestrictions
, commits
, commitstatuses
, issue_tracker
, pullrequests
, downloads
, source
, pipelines
, refs
, snippets
, teams
, projects
, users
, search
, user
, ssh
Check API client docs: https://bitbucketjs.netlify.com
bitbucket.repositories
.list({ username: 'MunifTanjim' })
.then(({ data, headers }) => console.log(data.values))
.catch(err => console.error(err))
This API client is heavily inspired by the octokit/rest.js
and a lot of ideas are taken from there. So, thanks goes to the maintainer Gregor Martynus and all the awesome contributors of octokit/rest.js
.
Licensed under the MIT License. Check the LICENSE file for details.