{"id":13452036,"url":"https://github.com/jira-node/node-jira-client","last_synced_at":"2026-01-12T02:30:24.550Z","repository":{"id":37251792,"uuid":"47339110","full_name":"jira-node/node-jira-client","owner":"jira-node","description":"A Node.js wrapper for the Jira REST API","archived":false,"fork":false,"pushed_at":"2024-03-19T11:12:25.000Z","size":2129,"stargazers_count":452,"open_issues_count":43,"forks_count":171,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-03-15T03:22:13.994Z","etag":null,"topics":["jira","jira-client","nodejs"],"latest_commit_sha":null,"homepage":"https://jira-node.github.io/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jira-node.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-12-03T15:02:21.000Z","updated_at":"2025-03-14T01:30:43.000Z","dependencies_parsed_at":"2024-06-18T12:20:03.104Z","dependency_job_id":"7aa04a14-9ca9-4d98-97f9-5a865f60cc41","html_url":"https://github.com/jira-node/node-jira-client","commit_stats":{"total_commits":461,"total_committers":98,"mean_commits":4.704081632653061,"dds":0.8286334056399132,"last_synced_commit":"f9102bbe3969185a92834f48076c65aa9c5d0be4"},"previous_names":[],"tags_count":73,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jira-node%2Fnode-jira-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jira-node%2Fnode-jira-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jira-node%2Fnode-jira-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jira-node%2Fnode-jira-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jira-node","download_url":"https://codeload.github.com/jira-node/node-jira-client/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245158921,"owners_count":20570286,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jira","jira-client","nodejs"],"created_at":"2024-07-31T07:01:10.850Z","updated_at":"2026-01-12T02:30:24.543Z","avatar_url":"https://github.com/jira-node.png","language":"JavaScript","funding_links":[],"categories":["nodejs","JavaScript"],"sub_categories":[],"readme":"# JavaScript JIRA API for node.js #\n\nA node.js module, which provides an object oriented wrapper for the Jira Rest API.\n\n[![Documentation](https://img.shields.io/badge/Documentation--green.svg)](https://jira-node.github.io/)\n[![Jira Rest API](https://img.shields.io/badge/Jira%20Rest%20API--green.svg)](http://docs.atlassian.com/jira/REST/latest/)\n[![Run tests](https://github.com/jira-node/node-jira-client/workflows/Run%20tests/badge.svg)](https://github.com/jira-node/node-jira-client/actions)\n[![npm](https://img.shields.io/npm/v/jira-client.svg)](https://www.npmjs.com/package/jira-client)\n[![Downloads](https://img.shields.io/npm/dm/jira-client.svg)](https://npmjs.com/jira-client)\n[![Install Size](https://packagephobia.now.sh/badge?p=jira-client)](https://packagephobia.now.sh/result?p=jira-client)\n[![dependency Status](https://david-dm.org/jira-node/node-jira-client/status.svg)](https://david-dm.org/jira-node/node-jira-client)\n[![devDependency Status](https://david-dm.org/jira-node/node-jira-client/dev-status.svg)](https://david-dm.org/jira-node/node-jira-client?type=dev)\n\n## Installation ##\n\nInstall with the node package manager [npm](http://npmjs.org):\n\n```shell\n$ npm install jira-client\n```\n\n## Examples ##\n\n### Create the JIRA client ###\n\n```javascript\n// With ES5\nvar JiraApi = require('jira-client');\n\n// With ES6\nimport JiraApi from 'jira-client';\n\n// Initialize\nvar jira = new JiraApi({\n  protocol: 'https',\n  host: 'jira.somehost.com',\n  username: 'username',\n  password: 'password',\n  apiVersion: '2',\n  strictSSL: true\n});\n```\n\n### Find the status of an issue ###\n\n```javascript\n// ES5\n// We are using an ES5 Polyfill for Promise support. Please note that if you don't explicitly\n// apply a catch exceptions will get swallowed. Read up on ES6 Promises for further details.\njira.findIssue(issueNumber)\n  .then(function(issue) {\n    console.log('Status: ' + issue.fields.status.name);\n  })\n  .catch(function(err) {\n    console.error(err);\n  });\n\n// ES6\njira.findIssue(issueNumber)\n  .then(issue =\u003e {\n    console.log(`Status: ${issue.fields.status.name}`);\n  })\n  .catch(err =\u003e {\n    console.error(err);\n  });\n\n// ES7\nasync function logIssueName() {\n  try {\n    const issue = await jira.findIssue(issueNumber);\n    console.log(`Status: ${issue.fields.status.name}`);\n  } catch (err) {\n    console.error(err);\n  }\n}\n\n```\n\n## Documentation ##\nCan't find what you need in the readme?  Check out our documentation here: https://jira-node.github.io/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjira-node%2Fnode-jira-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjira-node%2Fnode-jira-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjira-node%2Fnode-jira-client/lists"}