dretay / jira-node

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JIRA NodeJS

A NodeJS project that abstracts interfacing with JIRA.

Some simple wrapper functions to make interfacing with JIRA easier.

How to run tests

$ npm install
$ npm run test

Instructions

Example

(async () => {
  let jira = new Jira({ jiraServer: server });
  await jira.connect({ username: account, password: password });
  let issue = await jira.getIssues(`key=MyTicket-1234`);
  console.dir(issue);
})();

About


Languages

Language:JavaScript 100.0%