Utilities for finding emails used by a given GitHub user.
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);
Licensed under the MIT License.