Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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