bamboo-ci-api

0.0.7 • Public • Published

Bamboo-CI

An Atlasian Bamboo CI interface library

Usage

const Bamboo = require('BambooCi').Bamboo;

const bamboo = new Bamboo({
  // only this is required, the rest are either not used or have sensible
  // defaults and only need to be modified if required
  hostname: "bamboo.example.com",
  username: "somename",
  password: "somepassword",
  protocol: 'https',
  port: '443',
});

const projects = await bamboo.projects();
const project = await bamboo.project('KEY');
const plan = await bamboo.plan('projectKey', 'buildKey');

The Bamboo object

Constructor

REFERENCES

This is a port of the perl module Net::Bamboo

ALSO SEE

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.0.716latest

Version History

VersionDownloads (Last 7 Days)Published
0.0.716
0.0.60
0.0.50
0.0.40
0.0.30
0.0.20
0.0.10

Package Sidebar

Install

npm i bamboo-ci-api

Weekly Downloads

16

Version

0.0.7

License

ISC

Unpacked Size

11.9 kB

Total Files

12

Last publish

Collaborators

  • ivan.wills