{"id":19404924,"url":"https://github.com/jswesterfield/atlassian-query-tool","last_synced_at":"2026-04-13T06:03:31.140Z","repository":{"id":87182760,"uuid":"245434050","full_name":"JSWesterfield/atlassian-query-tool","owner":"JSWesterfield","description":"🔎📇📈 Atlassian to CSV Query Tool allows quick review of Atlassian(JIRA) Column Data in one simple Node.JS script running(npm node [appName].js)","archived":false,"fork":false,"pushed_at":"2020-03-06T18:12:37.000Z","size":5429,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-18T11:44:42.089Z","etag":null,"topics":["api","atlassian-jira","express","express-winston","fs","node-cron","nodejs","npm"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JSWesterfield.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-03-06T14:00:42.000Z","updated_at":"2020-03-12T00:10:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"5bd92842-f491-400a-ac9c-665dd256488f","html_url":"https://github.com/JSWesterfield/atlassian-query-tool","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JSWesterfield/atlassian-query-tool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSWesterfield%2Fatlassian-query-tool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSWesterfield%2Fatlassian-query-tool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSWesterfield%2Fatlassian-query-tool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSWesterfield%2Fatlassian-query-tool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JSWesterfield","download_url":"https://codeload.github.com/JSWesterfield/atlassian-query-tool/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSWesterfield%2Fatlassian-query-tool/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31741541,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T05:13:27.074Z","status":"ssl_error","status_checked_at":"2026-04-13T05:13:25.150Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["api","atlassian-jira","express","express-winston","fs","node-cron","nodejs","npm"],"created_at":"2024-11-10T11:36:42.173Z","updated_at":"2026-04-13T06:03:31.094Z","avatar_url":"https://github.com/JSWesterfield.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Atlassian Query Tool \n\n🔎📇📈Atlassian Query Tool  is a NodeJS application for fetching data from JIRA to excel\n\n## Installation\n\nUse the package manager [npm](https://api.slack.com/bot-users) to get started with a Slack Slash Command.\n\n```bash\nnpm install atlassianQueryTool\n```\n\n## Usage\n\nWe set up our application by adding the below code:\n\n```javascript\n\nvar searchString=\"project='okrs' and ((createdDate\u003c='2025/11/1' and createdDate\u003e='2025/3/1') or (updatedDate \u003c='2025/11/1' and updatedDate \u003e='2025/3/1')) \"\njira.searchJira(searchString).then(function(issue) {\n    var fields = ['ISSUE_Number', 'TITLE', 'STATUS'];\n    var myISSUE=[];\n    for(let i=0; i\u003cissue.total ;i++ ) {\n        myISSUE.push(\n            {\n                \"ISSUE_Number\":issue.issues[i].key,\n                \"TITLE\": issue.issues[i].fields.status.name,\n                \"STATUS\": issue.issues[i].fields.summary,\n            }\n        )\n    };\n    var csv = json2csv({ data: myISSUE});\n    fs.writeFile('file.csv', csv, function(err) {\n        if (err) throw err;\n            console.log('file saved');\n        });\n    })\n    .catch(function(err) {\n        console.error(err);\n    }\n);\n\n```\n\n## Built With :hammer_and_wrench:\n\n* [NodeJS](https://nodejs.org/en/docs/) - a JavaScript runtime built on Chrome's V8 JavaScript engine. Version 12.16.1 LTS\n* [Express](https://expressjs.com/en/starter/installing.html) - Dependency Management. Default package manager for the JS runtime environment Node.js\n* [NPM](https://docs.npmjs.com/) - Dependency Management. Default package manager for the JS runtime environment Node.js\n* [Atlassian API](https://developer.atlassian.com/server/jira/platform/rest-apis/) - a proprietary issue tracking product developed by Atlassian that allows bug tracking and agile project management API\n* [fs](https://nodejs.dev/the-nodejs-fs-module) - module provides a lot of very useful functionality to access and interact with the file system.\n* [Node-Cron](https://github.com/node-cron/node-cron) - A simple cron-like job scheduler for Node.js\n* [Jasmine](https://jasmine.github.io/setup/nodejs.html) - A behavior-driven development framework for testing JavaScript code.\n* [Nodemon](https://github.com/remy/nodemon#nodemon) - A utility that will monitor for any changes in your source and automatically restart your server. Perfect for development. Install it using npm.[devDependency]\n* [ES6/ES7](http://es6-features.org/#Constants | https://developer.mozilla.org/en-US/docs/Archive/Web/JavaScript/ECMAScript_Next_support_in_Mozilla#ECMAScript_2017) - ECMAScript Next refers to new features of the ECMA-262 standard (commonly referred to as JavaScript) introduced after ECMAScript 2015. New versions of ECMAScript specifications are released yearly.\n\n## Contributing :open_hands:\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n## Authors :book:\n* **Jake Westerfield** - *Primary Work*\n\n## License :microscope:\n[MIT](https://choosealicense.com/licenses/mit/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjswesterfield%2Fatlassian-query-tool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjswesterfield%2Fatlassian-query-tool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjswesterfield%2Fatlassian-query-tool/lists"}