A Node.js library for interacting with Atlassian JIRA's REST API. Version 0.2.0 is the current stable release, though the package appears to be in early development with limited updates. It provides basic authentication and simple issue operations. Compared to more robust alternatives like 'jira-connector' or '@atlassian/jira-client', this library has minimal features and documentation, making it suitable only for simple use cases.
npm install node-jiraNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates initializing JiraApi with basic auth and fetching an issue via callback.
Wrap callbacks in promises manually or switch to a promise-based library like 'jira-connector'.
Use a more complete JIRA client for advanced features like project management or agile boards.
Use environment variables for credentials securely, or switch to a library with token support.
Run 'npm install node-jira' and ensure require path is 'node-jira'.
Use 'const JiraApi = require('node-jira');' (CommonJS).Ensure you call 'new JiraApi(username, password, options)' with correct parameters.
No dependency data recorded yet.