node-jira icon indicating copy to clipboard operation
node-jira copied to clipboard

A nodejs wrapper for the JIRA REST API

Results 71 node-jira issues
Sort by recently updated
recently updated
newest added

This will exclude unnecessary stuff like docs and tests from npm package Reduced npm package size from 292KB to 12KB See also my [blog post about it](http://www.rudeshko.com/web/2014/05/13/help-people-consume-your-npm-packages.html).

Added a method getWorklog to get all worklog entries for an issue.

Hi - it would be nice if there was an example showing how to page the apis using node-jira, or better still, an iterator with which to fetch the next...

It'd be nice if node-jira returned the response body as well as the error even for errors as it makes finding bugs on projects that depend on it way easier....

This is something that is (was) missing from `node-jira` when trying to use `*.atlassian.net` from behind a corporate proxy.

When trying to listTransitions, I am getting an 'Issue not found' error. After adding a console.log that shows me the URI that will be returned on line 158 of jira.js,...

So to make sure I didn't waste your time, I pored over the codebase to see if I could find where it _should_ show the /jira prefix to the uri...

after some fidleing and reading the docs I came up with this function I needed for some reason ``` JiraApi.prototype.getAllSprintsForRapidId = function (rapidViewId, callback) { var options = { rejectUnauthorized:...

By putting the user/pass into the URI you limit people to uncomplicated passwords. For example if my password was 'iL@vePa#s' it turns into 'https://user:iL@vePa%23s@host:443' which is obviously broken. request allows...