JSPM

get-committers

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

Get users who have committed code to an organizations' GitHub repos

Package Exports

  • get-committers

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-committers) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

get-committers Build Status

Get users who have committed code to an organizations' GitHub repos

This module returns a list of GitHub usernames who have committed code to an organization's repos within a set timeframe.

Install

$ npm install --save get-committers

Usage

const getCommitters = require('get-committers');

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

API

getCommitters(options)

options.org

Type: string

The organization to scour for comments.

options.since

Type: string

The ISO date from which to get comments that have been made.

CLI

$ npm install --global get-committers
$ get-committers --help

  Usage
    get-committers [org] [since]

  Examples
    $ get-committers ipfs 2016-01-15T00:20:24Z
    RichardLitt

License

MIT © Richard Littauer