JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q43208F
  • License MIT

Get users who comment on PRs or Code for OS GitHub Repos

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 Build Status

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-reviewers

Usage

const getCodeReviewers = require('get-code-reviewers')

getCodeReviewers('ipfs', {
    since: '2016-01-15T00:20:24Z',
    until: '2016-01-20T00:20:24Z'
  })
//=> RichardLitt

API

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
    RichardLitt

License

MIT © Richard Littauer