Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

atlassian-jira

justmiles501.0.1

Node.js client library to interact with Atlassian Jira

atlassian, jira, atlassian-jira

readme

node-atlassian-jira

Node.js client library to interact with Atlassian Jira

Installation

If you have the node package manager, npm, installed:

npm install --save atlassian-jira

Getting Started

Example:

var jira = require('atlassian-jira');

jira.username = 'your_username';
jira.password = 'your_password';
jira.host = 'jira_host.com';
jira.context = '/jira'; // optional 

jira.simpleSearch('test', null, function(err, res) {
  if (err != null) {
    console.log(err);
  }
  if (res != null) {
    return console.log(res);
  }
});

Refer to https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis for additional documentation.