Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jswesterfield/atlassian-query-tool
πππ Atlassian to CSV Query Tool allows quick review of Atlassian(JIRA) Column Data in one simple Node.JS script running(npm node [appName].js)
https://github.com/jswesterfield/atlassian-query-tool
api atlassian-jira express express-winston fs node-cron nodejs npm
Last synced: 2 days ago
JSON representation
πππ Atlassian to CSV Query Tool allows quick review of Atlassian(JIRA) Column Data in one simple Node.JS script running(npm node [appName].js)
- Host: GitHub
- URL: https://github.com/jswesterfield/atlassian-query-tool
- Owner: JSWesterfield
- Created: 2020-03-06T14:00:42.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-06T18:12:37.000Z (almost 5 years ago)
- Last Synced: 2024-11-10T11:42:33.253Z (about 2 months ago)
- Topics: api, atlassian-jira, express, express-winston, fs, node-cron, nodejs, npm
- Language: JavaScript
- Homepage:
- Size: 5.18 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Atlassian Query Tool
πππAtlassian Query Tool is a NodeJS application for fetching data from JIRA to excel
## Installation
Use the package manager [npm](https://api.slack.com/bot-users) to get started with a Slack Slash Command.
```bash
npm install atlassianQueryTool
```## Usage
We set up our application by adding the below code:
```javascript
var searchString="project='okrs' and ((createdDate<='2025/11/1' and createdDate>='2025/3/1') or (updatedDate <='2025/11/1' and updatedDate >='2025/3/1')) "
jira.searchJira(searchString).then(function(issue) {
var fields = ['ISSUE_Number', 'TITLE', 'STATUS'];
var myISSUE=[];
for(let i=0; i