Get your GitHub Issues offline! In HTML format.
This is a command line application, that fetches the GitHub Issues you specify and writes them into a file on your computer in HTML format.
This will cap issues at the first 300. You can change this limit by passing maxPageSize as command line argument
node src/cli.js -p 4 SrikanthIO/GHReleaseNotes
-
Clone this repository:
[email protected]:SrikanthIO/GHReleaseNotes.git
-
Go inside this project:
cd GHReleaseNotes
-
Install dependencies:
npm install
-
Link this local version to your global
npm link
(orsudo npm link
) -
Run
node src/cli.js SrikanthIO/GHReleaseNotes
command to pull the github issues. -
node src/cli.js --help
-
--destination, -d Change destination of the generated files
-
--html, -h If no repository given, generate HTML from existing offline cache [boolean]
-
--header, -r Release notes header name [default: "Release Notes"]
-
--pagesize, -p No of issues to pull from github. It will pull 100 issues per page [default: "3"]
-
Right now it is getting all closed issues by default.