npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

git-heroes

v3.1.0

Published

List git contributors between two revisions.

Downloads

19

Readme

Git Heroes

Get stats on git contributors between two git (release) tags or any other revision range in JSON or MarkDown format.

A great insight and way to thank your community.

Example

Get the contributors between the last 5.0.2 release and the current 5.1.x version of Appcelerator Titanium.

$ git-heroes -c 5_1_X -p 5_0_2_GA -n
| name (16)        | email                           | commits (255) | added (176061) | deleted (347769) | sum (523830) | diff (171708) |
| ---------------- | ------------------------------- | ------------- | -------------- | ---------------- | ------------ | ------------- |
| Chris Barber     | [email protected]                | 43            | 146762         | 255795           | 402557       | 109033        |
| sgtcoolguy       | [email protected]      | 11            | 8588           | 88800            | 97388        | 80212         |
| Pedro Enrique    | [email protected]             | 13            | 6122           | 207              | 6329         | 5915          |
| Feon Sua         | [email protected] | 13            | 5418           | 30               | 5448         | 5388          |
| Hans Knoechel    | [email protected]  | 75            | 3026           | 1449             | 4475         | 1577          |
| Hieu Pham        | [email protected]          | 13            | 2285           | 447              | 2732         | 1838          |
| Ben Hatfield     | [email protected]      | 11            | 1340           | 441              | 1781         | 899           |
| Ben Bahrenburg   | [email protected]        | 13            | 994            | 195              | 1189         | 799           |
| Ashraf           | [email protected]         | 13            | 905            | 114              | 1019         | 791           |
| cheekiatng       | [email protected]            | 26            | 351            | 193              | 544          | 158           |
| AngelkPetkov     | [email protected]        | 13            | 226            | 62               | 288          | 164           |
| Manoj Kumar      | [email protected]        | 2             | 22             | 20               | 42           | 2             |
| Fokke Zandbergen | [email protected]                 | 5             | 10             | 8                | 18           | 2             |
| Manuel Lehner    | [email protected]         | 2             | 9              | 5                | 14           | 4             |
| Kota Iguchi      | [email protected]         | 1             | 2              | 2                | 4            | 0             |
| Praveen Innamuri | [email protected]      | 1             | 1              | 1                | 2            | 0             |

Install npm

As global CLI:

[sudo] npm install -g git-heroes

As a dependency:

npm install --save git-heroes

Usage

Run git-heroes -h for usage:

$ git-heroes -h

  Usage: git-heroes [options] [path]

  Options:

    -h, --help                 output usage information
    -V, --version              output the version number
    -p, --previous <revision>  Include commits after a certain revision
    -c, --current <revision>   Include commits for a certain revision
    -s, --sort <by>            Sort by name, email, commits, added, deleted, sum or diff [sum]
    -a, --asc                  Sort ascending instead of default descending
    -o, --output <type>        Output type [md]
    -n, --names                Use both email and name to identify contributors
    -t, --titles               Show commit titles

The [path] will default to the current working directory.

The --previous and --current options are used as revision range for git log as such:

git log --numstat --no-merges --pretty="<COMMIT>%aN<FIELD>%aE<FIELD>%s<FIELD>" <previous>..<current>

You can leave out --current (which will also remove ..) and only use --previous to set any range you'd like.

Module API

The CLI uses the module API which you can also use directly as:

var heroes = require('git-heroes');

heroes(opts, callback);

Issues

Please report issues and features requests in the repo's issue tracker.

License

Distributed under MIT License.