Get a list of GitHub issue creators from an organization or repo
$ npm install --save get-github-issue-creators
const getGithubIssueCreators = require('get-github-issue-creators');
getGithubIssueCreators('RichardLitt', {
since: '2016-01-15T00:20:24Z',
until: '2016-01-20T00:20:24Z',
repo: 'get-github-issue-creators'
});
//=> 'RichardLitt'
Type: string
The organization or user to scour for issues. If not set, it will grab the user and repository of the current git directory, and use that user and that repository as options.
Type: string
The ISO date from which to get issues that have been made.
Type: string
The ISO date to which to get issues that have been made.
Type: string
A repo to search for issues from.
$ npm install --global get-github-issue-creators
$ get-github-issue-creators --help
Usage
$ get-github-issue-creators [input]
Options
-r, --repo Only for a specific repo. [Default: false]
-s, --since Only since a specific time. [Default: false]
-u, --until Only to a specific time. [Default: false]
Examples
$ get-github-issue-creators
RichardLitt
$ get-github-issue-creators RichardLitt --repo=get-github-issue-creators --since=2016-01-15T00:01:01Z --until=2016-01-20T00:01:05Z
RichardLitt
MIT © Richard Littauer