Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 903 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 903 Bytes

find-gh-commit-emails

npm license: MIT

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.