0.1.0 • Published 9 years ago

node-copperegg-api-wrapper v0.1.0

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

JavaScript CopperEgg API for Node.js

Build Status

A node.js module, which provides an object oriented wrapper for the JIRA REST API.

CopperEgg REST API documentation can be found here

Installation

Install with the node package manager npm:

$ npm install node-copperegg-api

Example

ce = require('./lib/copperegg');
ceClient = new ce.CopperEggApi('user-api-token');

ceClient.getAlerts(function(error, issues) {
  console.log(issues);
})