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-extension

v1.6.2

Published

Git Extension CLI — multi-account management, enhanced worktree, and git passthrough

Downloads

708

Readme

ge — Git Extension CLI

A lightweight CLI that extends git with multi-account management, enhanced worktree support, and seamless git passthrough.

Features

  • ge user — Switch between multiple git accounts (global/per-repo), manage SSH keys, directory auto-switch rules
  • ge worktree — Enhanced worktree management with auto branch creation
  • Git passthrough — Any unknown command is forwarded to git (ge commitgit commit)

Installation

npm (recommended)

npm install -g git-extension

# Add to your shell RC file (~/.zshrc or ~/.bashrc):
eval "$(ge init zsh)"    # for zsh
eval "$(ge init bash)"   # for bash

curl

bash <(curl -fsSL https://raw.githubusercontent.com/isac7722/git-extension/main/install.sh)

Manual

git clone https://github.com/isac7722/git-extension.git ~/.ge
~/.ge/install.sh

Setup

After installation, register your git accounts:

# Edit the accounts file directly:
$EDITOR ~/.config/gituser/accounts

# Or use the interactive command:
ge user add

Account file format:

aliases:name:email:ssh_key_path
work,w:John Work:[email protected]:~/.ssh/work_ed25519
personal,p:John Personal:[email protected]:~/.ssh/personal_ed25519

Usage

User Management (ge user)

ge user                    # fzf selector (or help if fzf not installed)
ge user list               # list all accounts
ge user current            # show current global account
ge user <alias>            # switch globally
ge user set <alias>        # switch for current repo only (--local)
ge user add                # interactively register an account
ge user ssh-key <a> [path] # view or update SSH key path
ge user clone <a> <url>    # clone with a specific account
ge user rule add <a> <dir> # auto-switch rule for a directory
ge user rule list          # list rules
ge user rule remove <a>    # remove a rule

Worktree Management (ge worktree)

ge worktree add <branch> [dir]  # create worktree (auto-creates branch if needed)
ge worktree list                # list worktrees (git passthrough)
ge worktree remove <path>       # remove worktree (git passthrough)

Git Passthrough

ge status                  # → git status
ge commit -m "msg"         # → git commit -m "msg"
ge push origin main        # → git push origin main

Other

ge update                  # self-update (git pull or npm update hint)
ge version                 # show version
ge help                    # show help

Architecture

ge uses a hybrid shell-function + executable approach:

  • Shell function (shell/ge.zsh / shell/ge.bash): Loaded via eval "$(ge init <shell>)". Handles commands that modify the current shell environment (e.g., GIT_SSH_COMMAND export for account switching).
  • Standalone binary (bin/ge): Handles ge init, ge worktree, and git passthrough. Works without shell integration.

This is the same pattern used by rbenv, pyenv, and direnv.

Migrating from gituser

ge is backward compatible. The gituser command is aliased to ge user automatically. All config files remain in ~/.config/gituser/.

| Before | After | |--------|-------| | gituser list | ge user list | | gituser <alias> | ge user <alias> | | gituser set <alias> | ge user set <alias> | | gituser clone <a> <url> | ge user clone <a> <url> | | gituser update | ge update |

Requirements

  • git
  • bash 4+ or zsh
  • fzf (optional, for interactive account selector)
  • macOS or Linux

License

MIT