node-bitbucket-api
bitbucket api node wrapper
Getting Started
Install the module with: npm install node-bitbucket-api
Examples
var bitbucket = require('node-bitbucket-api');
var client = bitbucket.createClient({
username: 'USER',
password: 'PWD'
});
var repository = client.getRepository({
slug: 'SLUG',
owner: 'OWNER'
}, function (err, repo) {
});
Credits
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Release History
(Nothing yet)