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.
$ npm install --save get-committers
const getCommitters = require('get-committers');
getCommitters({
org: 'ipfs',
since: '2016-01-15T00:20:24Z'
});
//=> RichardLitt
Type: string
The organization to scour for comments.
Type: string
The ISO date from which to get comments that have been made.
$ npm install --global get-committers
$ get-committers --help
Usage
get-committers [org] [since]
Examples
$ get-committers ipfs 2016-01-15T00:20:24Z
RichardLitt
MIT © Richard Littauer