shippable.js

NodeJS wrapper for Shippable API

Usage no npm install needed!

<script type="module">
  import shippableJs from 'https://cdn.skypack.dev/shippable.js';
</script>

README

Node.JS wrapper for Shippable API

Build Status

Makes it easier to call the Shippable API from NodeJS apps.

Quick start

var Shippable = require('shippable.js');

var api = new Shippable('https://api.shippable.com', myMachineToken);
api.getProject(myProjectId, function(err, project) {
    if (project.autoBuild) {
      project.build();
    }
});