https://github.com/richardlitt/get-github-issue-creators
UNMAINTAINED Get a list of GitHub issue creators from an organization or repo
https://github.com/richardlitt/get-github-issue-creators
api cli cli-app contrib contribs contributors create creators github issue issues user users
Last synced: about 1 month ago
JSON representation
UNMAINTAINED Get a list of GitHub issue creators from an organization or repo
- Host: GitHub
- URL: https://github.com/richardlitt/get-github-issue-creators
- Owner: RichardLitt
- License: mit
- Created: 2016-01-17T04:18:28.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-16T21:12:40.000Z (over 8 years ago)
- Last Synced: 2025-03-07T11:19:09.297Z (over 1 year ago)
- Topics: api, cli, cli-app, contrib, contribs, contributors, create, creators, github, issue, issues, user, users
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
- License: license
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# get-github-issue-creators [](https://travis-ci.org/RichardLitt/get-github-issue-creators)
> Get a list of GitHub issue creators from an organization or repo
## Install
```
$ npm install --save get-github-issue-creators
```
## Usage
```js
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'
```
## API
### getGithubIssueCreators(input, [options])
#### org
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.
#### options.since
Type: `string`
The ISO date from which to get issues that have been made.
#### options.until
Type: `string`
The ISO date to which to get issues that have been made.
#### options.repo
Type: `string`
A repo to search for issues from.
## CLI
```
$ 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
```
## License
MIT © [Richard Littauer](http://burntfen.com)