Command line application allowing you to download all issues in the CSV format from the public or private repository
- Node.js
v12.13.0
(tested on versions6
,7
,8
andlatest
)
npm install -g git-issues-downloader
git-issues-downloader <repository URL>
Command prompt will ask for username and password credentials for GitHub
git-issues-downloader https://github.com/remoteorigin/git-issues-downloader
If you do not need to authentication, simply hit enter for username and password.
Example with username and password
git-issues-downloader -u <username> -p <username> https://github.com/remoteorigin/git-issues-downloader
The two-factor authentication is currently not supported.
git clone [email protected]:remoteorigin/git-issues-downloader.git
cd git-issues-downloader
npm install
npm start
All tests are are written in Mocha and stored in the test
folder.
npm run test
Using Standard JavaScript linter & automatic code fixer.
npm run lint
Automatically fix linting issues
npm run lint:fix