Node Jira Client

A Node.js wrapper for the Jira REST API
Alternatives To Node Jira Client
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Atlassian Python Api1,0645445 days ago239May 25, 2022178apache-2.0Python
Atlassian Python REST API wrapper
Jira Ruby6211,045614 months ago44January 23, 202182mitRuby
A Ruby gem for the JIRA REST API
Php Jira Rest Client487322021 days ago137October 03, 202212otherPHP
PHP classes interact Jira with the REST API.
Node Jira Client39386767 months ago57March 08, 202233mitJavaScript
A Node.js wrapper for the Jira REST API
Node Jira379183455 years ago23September 06, 201476JavaScript
A nodejs wrapper for the JIRA REST API
Jira Connector36090633 years ago47December 18, 201929mitJavaScript
NodeJS Wrapper for the Jira REST API
Jiraps281
9 months ago112mitPowerShell
PowerShell module to interact with Atlassian JIRA
Jira Api Restclient21953148 months ago1July 27, 201450mitPHP
php JIRA REST API
Camunda Excamad217
2 months ago18gpl-3.0Vue
External camunda admin portal, which make live in multi-camunda`s environment much easy #camunda
Jira.js204172 days ago71January 09, 20239mitTypeScript
A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Alternatives To Node Jira Client
Select To Compare


Alternative Project Comparisons
Readme

JavaScript JIRA API for node.js

A node.js module, which provides an object oriented wrapper for the Jira Rest API.

Documentation Jira Rest API Run tests npm Downloads Install Size dependency Status devDependency Status

Installation

Install with the node package manager npm:

$ npm install jira-client

Examples

Create the JIRA client

// With ES5
var JiraApi = require('jira-client');

// With ES6
import JiraApi from 'jira-client';

// Initialize
var jira = new JiraApi({
  protocol: 'https',
  host: 'jira.somehost.com',
  username: 'username',
  password: 'password',
  apiVersion: '2',
  strictSSL: true
});

Find the status of an issue

// ES5
// We are using an ES5 Polyfill for Promise support. Please note that if you don't explicitly
// apply a catch exceptions will get swallowed. Read up on ES6 Promises for further details.
jira.findIssue(issueNumber)
  .then(function(issue) {
    console.log('Status: ' + issue.fields.status.name);
  })
  .catch(function(err) {
    console.error(err);
  });

// ES6
jira.findIssue(issueNumber)
  .then(issue => {
    console.log(`Status: ${issue.fields.status.name}`);
  })
  .catch(err => {
    console.error(err);
  });

// ES7
async function logIssueName() {
  try {
    const issue = await jira.findIssue(issueNumber);
    console.log(`Status: ${issue.fields.status.name}`);
  } catch (err) {
    console.error(err);
  }
}

Documentation

Can't find what you need in the readme? Check out our documentation here: https://jira-node.github.io/

Popular Rest Projects
Popular Jira Projects
Popular Application Programming Interfaces Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Node
Rest
Jira