0.0.1 • Published 10 years ago

node-copperegg-api v0.0.1

Weekly downloads
4
License
-
Repository
github
Last release
10 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('https://api.copperegg.com/v2', 'user-api-token');

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