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

gh-mirror

v1.0.5

Published

Clone and update GitHub organisation repositories in bulk

Readme

gh-mirror

Clone and update all repositories for a GitHub user or organisation, in parallel.

Repos are organised as <base-path>/<owner>/<repo>.

Install

npm install -g gh-mirror

Authentication

Provide a GitHub Personal Access Token via one of:

  • --token <pat> CLI flag
  • GITHUB_TOKEN environment variable
  • GH_TOKEN environment variable

Create a token at https://github.com/settings/tokens with the repo scope (private repos) or public_repo (public only).

Usage

gh-mirror [options] [target]

By default (no --clone or --update flag), both clone and update are run. Freshly cloned repos are skipped during update.

# Clone new + update existing repos for a user or org
gh-mirror MyOrg

# Clone new + update all from manifest
gh-mirror

Clone only

gh-mirror --clone MyOrg
gh-mirror --clone "MyOrg/Acq*"
gh-mirror --clone                  # clone new repos from manifest

Update only

gh-mirror --update
gh-mirror --update "MyOrg/RepoName"
gh-mirror --update "Some*Glob*"

Options

| Flag | Description | |------|-------------| | --clone [target] | Clone repositories only | | --update [target] | Pull latest for repositories only | | --token <pat> | GitHub personal access token | | --path <path> | Base path for repos (default: cwd) | | --concurrency <n> | Max parallel git operations (default: 10) | | --include-archived | Include archived repositories (excluded by default) | | --timeout <seconds> | Git operation timeout in seconds (default: 300) | | --force, -f | Force update all repos, skipping the pushed_at check | | --help | Show help |

Manifest

A .gh-mirror/manifest.json file is created in the base path to track configured owners and concurrency settings:

{
  "orgs": ["MyOrg", "some-user"],
  "concurrency": 10
}

Running --clone without a target uses the manifest to discover and clone any new repos across all tracked owners.

Concurrency

Git operations (clone/pull) run in parallel. Set the degree of parallelism with --concurrency:

gh-mirror --concurrency 8 --clone MyOrg

The concurrency value is saved to the manifest and reused in future runs unless overridden.

License

MIT