git-issues-downloader
v0.1.4
Published
Command line application allowing you to download all issues in the CSV format from the public or private GitHub repository
Downloads
33
Maintainers
Readme
Git Issues Downloader
Command line application allowing you to download all issues in the CSV format from the public or private repository
Requirements
- Node.js
v12.13.0(tested on versions6,7,8andlatest)
Installation
npm install -g git-issues-downloaderUsage
git-issues-downloader <repository URL>Examples
Command prompt will ask for username and password credentials for GitHub
git-issues-downloader https://github.com/remoteorigin/git-issues-downloaderIf 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-downloaderThe two-factor authentication is currently not supported.
Development
Project Setup
git clone [email protected]:remoteorigin/git-issues-downloader.git
cd git-issues-downloader
npm installRun Project
npm startTests
All tests are are written in Mocha and stored in the test folder.
npm run testLinting
Using Standard JavaScript linter & automatic code fixer.
npm run lintAutomatically fix linting issues
npm run lint:fix