0.0.8 • Published 5 years ago

node-jira-connector v0.0.8

Weekly downloads
20
License
MIT
Repository
github
Last release
5 years ago

JavaScript CRUD for JIRA

Supported Api calls

  • search
  • getIssue
  • createIssue
  • attachFile

Installing

npm i node-jira-connector

Usage example

const Jira = require('node-jira-connector');

const jiraClient = new Jira({
    host: 'http://localhost:3000/rest/api/latest/'',
    username: 'user',
    password: 'pass',
});

const getIssues = async () => {
    const url = 'search?jql=status=Completed';

    try {
        await jiraClient.search(url);
    } catch (e) {
        console.log('Error: ', e);
    }
};
0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

6 years ago

0.0.1

6 years ago

0.0.2

6 years ago

1.0.0

6 years ago