All Projects → MrRefactoring → jira.js

MrRefactoring / jira.js

Licence: MIT license
A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to jira.js

JirAgileR
User-friendly 🔹JIRA API wrapper. Track projects & issues from within R
Stars: ✭ 22 (-85.9%)
Mutual labels:  jira, agile, atlassian
atlassian-kubernetes
All things Atlassian and Kubernetes
Stars: ✭ 30 (-80.77%)
Mutual labels:  jira, service-desk
jira-cli
🔥 [WIP] Feature-rich interactive Jira command line.
Stars: ✭ 809 (+418.59%)
Mutual labels:  jira, atlassian
Terjira
Terjira is a very interactive and easy to use CLI tool for Jira.
Stars: ✭ 713 (+357.05%)
Mutual labels:  jira, agile
giticket
Utility to autoadd ticket number specified in your branch name to your commits!
Stars: ✭ 51 (-67.31%)
Mutual labels:  jira, agile
data-center-helm-charts
Helm charts for Atlassian's Data Center products
Stars: ✭ 77 (-50.64%)
Mutual labels:  jira, atlassian
katibu
the missing productivity tool for connecting Jira, Github and local git together 🚀
Stars: ✭ 13 (-91.67%)
Mutual labels:  jira, jira-client
xeo
A modern tool to bring SCRUM to Notion!
Stars: ✭ 26 (-83.33%)
Mutual labels:  jira, agile
prepare-commit-msg
Automatically prefix commit messages with the current branch issue number
Stars: ✭ 28 (-82.05%)
Mutual labels:  jira, atlassian
Confluence-and-Jira
Docker部署并破解Jira、Confluence及相关插件;若图片加载不出来可以访问我的博客原文查看
Stars: ✭ 60 (-61.54%)
Mutual labels:  jira, atlassian
vira
Create and update your Jira issues while inside Vim!
Stars: ✭ 76 (-51.28%)
Mutual labels:  jira, atlassian
laravel-jira-rest-client
A Laravel interface for your Atlassians Jira application
Stars: ✭ 37 (-76.28%)
Mutual labels:  jira, atlassian
quickstart-atlassian-jira
Jira Software Data Center and Jira Service Desk Data Center with high availability and performance
Stars: ✭ 61 (-60.9%)
Mutual labels:  jira, atlassian
tickets
Basic ticket tracker build on Laravel PHP framework
Stars: ✭ 18 (-88.46%)
Mutual labels:  jira, agile
jira-node-cli
JIRA command line interface written in NodeJS
Stars: ✭ 58 (-62.82%)
Mutual labels:  jira, jira-client
atlassian-connect-core
[Laravel 5.5+] The easiest way to create an add-on for the JIRA and Confluence
Stars: ✭ 42 (-73.08%)
Mutual labels:  jira, atlassian
user-stories-applied
敏捷的用户故事方法
Stars: ✭ 33 (-78.85%)
Mutual labels:  agile
estimator-elixir
Elixir side-project: Collaboratively estimate Jira stories (for remote teams)
Stars: ✭ 44 (-71.79%)
Mutual labels:  jira
tribe
Helps you answer why the @$*% that code exists.
Stars: ✭ 18 (-88.46%)
Mutual labels:  jira
jira-worklog
Simple CLI tool for logging work in Jira
Stars: ✭ 29 (-81.41%)
Mutual labels:  jira
Jira.js logo

NPM version NPM downloads per month build status license

JavaScript / TypeScript library for Node.JS and browsers to easily interact with Atlassian Jira API

About

jira.js is a powerful Node.JS / Browser module that allows you to interact with the Jira Cloud API, Jira Agile Cloud API, Jira ServiceDesk Cloud API very easily.

Usability, consistency, and performance are key focuses of jira.js, and it also has nearly 100% coverage of the Jira API. It receives new Jira features shortly after they arrive in the API.

Table of contents

Installation

Node.js 10.0.0 or newer is required.

Install with the npm:

npm install jira.js

Install with the yarn:

yarn add jira.js

Documentation

You can find the documentation here.

Deprecation warnings

  1. Deprecation warning: New error handling mechanism added. Please use newErrorHandling: true in config

We are using a new error handling mechanism (instead throwing raw axios error will be showed API response). For enable it, make following changes in your config:

const client = new Version3Client({
  host: '...',
  newErrorHandling: true, // This flag enable new error handling.
});

// Examples

/** Old error handling **/

const client = new Version3Client({ host: '...' });

client.issues.createIssue();

// Output:
// {
//   code: 'ERR_BAD_REQUEST',
//   config: { a lot of stuff here },
//   request: { a lot of stuff here },
//   response: {
//     a lot of stuff here
//     data: {
//       errorMessages: [],
//       errors: { project: 'Specify a valid project ID or key' }
//     },
//     a lot of stuff here
//   },
//   a lot of stuff here
// }

/** New error handling **/

const client = new Version3Client({ host: '...', newErrorHandling: true });

client.issues.createIssue();

// Output:
// {
//   errorMessages: [],
//   errors: { project: 'Specify a valid project ID or key' }
// }

Usage

Authentication

There are several types of authentication to gain access to the Jira API. Let's take a look at a few of them below

Basic authentication

Basic authentication allows you to log in with credentials. You can use username and password, but this login method is not supported in the online version and most standalone versions, so it's better to release API Token, read how to do it here, and use it together with email.

Username and password example:

import { Version2Client } from 'jira.js';

const client = new Version2Client({
  host: 'https://your-domain.atlassian.net',
  authentication: {
    basic: {
      username: 'YOUR_USERNAME',
      password: 'YOUR_PASSWORD',
    },
  },
});

Email and API Token example:

import { Version2Client } from 'jira.js';

const client = new Version2Client({
  host: 'https://your-domain.atlassian.net',
  authentication: {
    basic: {
      email: '[email protected]',
      apiToken: 'YOUR_API_TOKEN',
    },
  },
});
OAuth
import { Version2Client } from 'jira.js';

const client = new Version2Client({
  host: 'https://your-domain.atlassian.net',
  authentication: {
    oauth: {
      consumerKey: 'your consumer key',
      consumerSecret: '-----BEGIN RSA PRIVATE KEY-----\n" + "some private key\n" + "-----END RSA PRIVATE KEY-----',
      accessToken: 'your access token',
      tokenSecret: 'your token secret',
    },
  },
});
OAuth 2.0

Only the authorization token is currently supported. To release it, you need to read the documentation and write your own code to get the token.

Example of usage

import { Version2Client } from 'jira.js';

const client = new Version2Client({
  host: 'https://your-domain.atlassian.net',
  authentication: {
    oauth2: {
      accessToken: 'YOUR_ACCESS_TOKEN',
    },
  },
});
JWT
import { Version2Client } from 'jira.js';

const client = new Version2Client({
  host: 'https://your-domain.atlassian.net',
  authentication: {
    jwt: {
      issuer: 'ISSUER',
      secret: 'shhhh',
      expiryTimeSeconds: 180,
    },
  },
});
Personal access token
import { Version2Client } from 'jira.js';

const client = new Version2Client({
  host: 'https://your-domain.atlassian.net',
  authentication: {
    personalAccessToken: 'secrectPAT',
  },
});

Your first request and using algorithm

import { Version2Client } from 'jira.js';

const client = new Version2Client({
  host: 'https://your-domain.atlassian.net',
  authentication: {
    basic: {
      email: 'YOUR_EMAIL',
      apiToken: 'YOUR_API_TOKEN',
    },
  },
});

async function main() {
  const projects = await client.projects.getAllProjects();

  console.log(projects);
}

main();

// Expected output:
// [
//   {
//     expand: 'description,lead,issueTypes,url,projectKeys,permissions,insight',
//     self: 'https://your-domain.atlassian.net/rest/api/2/project/10000',
//     id: '10000',
//     key: 'TEST',
//     name: 'test',
//     avatarUrls: {
//       '48x48': 'https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10425',
//       '24x24': 'https://your-domain.atlassian.net/secure/projectavatar?size=small&s=small&pid=10000&avatarId=10425',
//       '16x16': 'https://your-domain.atlassian.net/secure/projectavatar?size=xsmall&s=xsmall&pid=10000&avatarId=10425',
//       '32x32': 'https://your-domain.atlassian.net/secure/projectavatar?size=medium&s=medium&pid=10000&avatarId=10425'
//     },
//     projectTypeKey: 'software',
//     simplified: true,
//     style: 'next-gen',
//     isPrivate: false,
//     properties: {},
//     entityId: 'e0a412bd-1510-4841-bdbc-84180db3ee3b',
//     uuid: 'e0a412bd-1510-4841-bdbc-84180db3ee3b'
//   }
// ]

The algorithm for using the library:

client.<group>.<methodName>(parametersObject);

Available groups:

Agile Cloud API group
Version 2 Cloud REST API group
Version 3 Cloud REST API group
Service Desk Cloud API group

The name of the methods is the name of the endpoint in the group without spaces and in camelCase.

The parameters depend on the specific endpoint. For more information, see here.

Decreasing Webpack bundle size

If you use Webpack and need to reduce the size of the assembly, you can create your client with only the groups you use.

import { BaseClient } from 'jira.js';
import { Board } from 'jira.js/out/agile';
import { Groups } from 'jira.js/out/version2';
import { Issues } from 'jira.js/out/version3';

export class CustomJiraClient extends BaseClient {
  board = new Board(this);
  groups = new Groups(this);
  issues = new Issues(this);
}

Take a look at our other products

  • Confluence.js - confluence.js is a powerful Node.JS / Browser module that allows you to interact with the Confluence API very easily
  • Trello.js - JavaScript / TypeScript library for Node.JS and browsers to easily interact with Atlassian Trello API

License

Distributed under the MIT License. See LICENSE for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].