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 🙏

© 2026 – Pkg Stats / Ryan Hefner

git-dump

v0.0.1

Published

Dump the contents of a remote git repository without directory listing enabled

Downloads

48

Readme

git-dump

Dump the contents of a remote git repository without directory listing enabled

Based on GitDumper but rewritten to not rely on specific GNU grep options

Installation

First, install Node.js, then:

npm install -g git-dump

Usage

git-dump <url> [dir=.] [workers=3]

Example

Using Blizzards Lumerico website for the Sombra ARG

$ ./git-dump https://lumerico.mx/president-bypass/.git sombra
> GET https://lumerico.mx/president-bypass/.git/description --> description
> GET https://lumerico.mx/president-bypass/.git/HEAD --> HEAD
> GET https://lumerico.mx/president-bypass/.git/config --> config
> GET https://lumerico.mx/president-bypass/.git/index --> index
> GET https://lumerico.mx/president-bypass/.git/refs/heads/master --> refs/heads/master
found 1 hashes in refs/heads/master
> GET https://lumerico.mx/president-bypass/.git/logs/HEAD --> logs/HEAD
found 2 hashes in logs/HEAD
> GET https://lumerico.mx/president-bypass/.git/logs/refs/heads/master --> logs/refs/heads/master
found 2 hashes in logs/refs/heads/master
> GET https://lumerico.mx/president-bypass/.git/info/exclude --> info/exclude
> GET https://lumerico.mx/president-bypass/.git/objects/67/7d90499d571221e2ec71914e56aee35afa9340 --> objects/67/7d90499d571221e2ec71914e56aee35afa9340
found 1 hashes in `git cat-file -p 677d90499d571221e2ec71914e56aee35afa9340`
objects/67/7d90499d571221e2ec71914e56aee35afa9340 already downloaded
> GET https://lumerico.mx/president-bypass/.git/objects/67/7d90499d571221e2ec71914e56aee35afa9340 --> objects/67/7d90499d571221e2ec71914e56aee35afa9340
found 1 hashes in `git cat-file -p 677d90499d571221e2ec71914e56aee35afa9340`
> GET https://lumerico.mx/president-bypass/.git/objects/7e/1701a6431539487bb0faf2862059c7aab7bc98 --> objects/7e/1701a6431539487bb0faf2862059c7aab7bc98
found 4 hashes in `git cat-file -p 7e1701a6431539487bb0faf2862059c7aab7bc98`
> GET https://lumerico.mx/president-bypass/.git/objects/7e/1701a6431539487bb0faf2862059c7aab7bc98 --> objects/7e/1701a6431539487bb0faf2862059c7aab7bc98
found 4 hashes in `git cat-file -p 7e1701a6431539487bb0faf2862059c7aab7bc98`
> GET https://lumerico.mx/president-bypass/.git/objects/79/e2fa35af7d9fee7961bee8d61ed096860f3b35 --> objects/79/e2fa35af7d9fee7961bee8d61ed096860f3b35
> GET https://lumerico.mx/president-bypass/.git/objects/54/273bcc08ed806cb37e3c6d3e146c2a17744964 --> objects/54/273bcc08ed806cb37e3c6d3e146c2a17744964
objects/54/273bcc08ed806cb37e3c6d3e146c2a17744964 already downloaded
objects/79/e2fa35af7d9fee7961bee8d61ed096860f3b35 already downloaded
> GET https://lumerico.mx/president-bypass/.git/objects/91/141f7bb072c3305c727c471e628358b23b6b48 --> objects/91/141f7bb072c3305c727c471e628358b23b6b48
> GET https://lumerico.mx/president-bypass/.git/objects/07/521638776e9f959c311373512aa87a58bfd570 --> objects/07/521638776e9f959c311373512aa87a58bfd570
> GET https://lumerico.mx/president-bypass/.git/objects/91/141f7bb072c3305c727c471e628358b23b6b48 --> objects/91/141f7bb072c3305c727c471e628358b23b6b48
> GET https://lumerico.mx/president-bypass/.git/objects/07/521638776e9f959c311373512aa87a58bfd570 --> objects/07/521638776e9f959c311373512aa87a58bfd570

Now, the directory will resemble a git repo

$ cd sombra/
$ ls
HEAD         config       description  index        info/        logs/        objects/     refs/
$ git log
commit 677d90499d571221e2ec71914e56aee35afa9340
Author: pedro <[email protected]>
Date:   Wed Oct 12 20:09:41 2016 -0400

    president auth bypass
    
    Signed-off-by: pedro <[email protected]>

License

MIT