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 
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-committersUsage
const getCommitters = require('get-committers');
getCommitters({
org: 'ipfs',
since: '2016-01-15T00:20:24Z'
});
//=> RichardLittAPI
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
RichardLittLicense
MIT © Richard Littauer