Package Exports
- get-code-reviewers
 
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (get-code-reviewers) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
get-code-reviewers 
Get users who comment on PRs or Code for OS GitHub Repos
This module returns a list of GitHub usernames who have commented on code or on PRs.
Install
$ npm install --save get-code-reviewersUsage
const getCodeReviewers = require('get-code-reviewers')
getCodeReviewers('ipfs', {
    since: '2016-01-15T00:20:24Z',
    until: '2016-01-20T00:20:24Z'
  })
//=> RichardLittAPI
getCodeReviewers(options)
org
Type: string
The organization to scour for comments.
options.repo
Type: string
The repository to get comments from.
options.since
Type: string
The ISO date from which to get comments that have been made.
options.until
Type: string
The ISO date before which to get comments that have been made.
CLI
$ npm install --global get-code-reviewers$ get-code-reviewers --help
  Usage
    get-code-reviewers <input> [opts]
  Examples
    $ get-code-reviewers ipfs --since=2016-01-15T00:20:24Z --until=2016-01-20T00:20:24Z
    RichardLittLicense
MIT © Richard Littauer