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

@liangmi/ghm

v0.0.4

Published

Project manager for opensource developers on Github

Readme

ghm

ghm is a GitHub project manager for open source developers.

vp install -g @liangmi/ghm

It keeps your local repositories organized under one predictable layout:

~/code
├── vitejs
│   ├── vite
│   └── devtools
└── vuejs
    ├── core
    └── vue
<root>/<owner>/<repo>

Requirements

  • macOS or Linux (Windows is not supported)
  • global install (local install is not supported for runtime usage)
  • git
  • GitHub CLI gh authenticated (gh auth status)

Quick Start

Run setup once:

ghm setup

ghm setup will:

  1. check git
  2. check gh authentication
  3. ask for your projects root directory
  4. ask which shell(s) you use (zsh, bash, fish)
  5. optionally collect command aliases
  6. write ~/.config/ghmrc.json
  7. sync managed shellrc blocks

After setup:

ghm clone vitejs/vite
ghm list

Commands

ghm setup

Initialize config and shell integration.

ghm clone <owner>/<repo>

Clone a GitHub repository into <root>/<owner>/<repo>.

Alias: ghm c <owner>/<repo>

Example:

ghm clone vuejs/core

ghm list

List repositories under your configured root.

Alias: ghm ls

Config

Default config path:

~/.config/ghmrc.json

Example:

{
  "$schema": "https://raw.githubusercontent.com/liangmiQwQ/ghm/main/config_schema.json",
  "root": "~/code",
  "shells": ["zsh"],
  "alias": {
    "ghm": ["i"],
    "clone": ["k"],
    "list": ["li"]
  }
}

Fields

  • root (required): absolute path or ~ path for your projects directory
  • shells (required): one or more of zsh, bash, fish
  • alias (optional): alias arrays for ghm, clone, list

Alias names must match:

[A-Za-z_][A-Za-z0-9_-]*

Shell Integration

ghm manages shell integration blocks in your shellrc files:

  • ~/.zshrc
  • ~/.bashrc
  • ~/.config/fish/config.fish

Notes

  • If you run config-required commands without config, ghm prompts you to run ghm setup.
  • ghm list only shows repositories that are Git repos with a GitHub remote.

Contribution

We're really excited to receive your contributions! Please see ROADMAP.md for details!

License

MIT © Liang Mi