find-gh-commit-emails
v1.1.0
Published
Search for emails used by a given GitHub user
Downloads
7
Readme
find-gh-commit-emails
Utilities for finding emails used by a given GitHub user.
Usage
This package provides an executable that can be invoked directly.
npx find-gh-commit-emails <username>
A utility function is also provided for use in Node.js applications.
import { findEmails } from "find-gh-commit-emails";
const username = "<username>";
const token = "[token]";
const options = {
includeCommitter: true,
};
const emailMap = await findEmails(username, token, options);
License
Licensed under the MIT License.