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

Readme

Keywords

Package Sidebar

Install

npm i bamboo-ci-api

Weekly Downloads

8

Version

0.0.7

License

ISC

Unpacked Size

11.9 kB

Total Files

12

Last publish

Collaborators

  • ivan.wills