0.1.0 • Published 11 years ago

node-bitbucket-api v0.1.0

Weekly downloads
4
License
-
Repository
github
Last release
11 years ago

node-bitbucket-api Build Status

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) {
   //Code to access the repo object.
});

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)