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

githook-js

v0.1.0

Published

Minimal git hooks installer driven by a Lefthook-style git_hooks.yml

Downloads

49

Readme

githook-js

A minimal git hooks installer, with no runtime dependencies beyond js-yaml.

Installation

pnpm add -D githook-js
# or: npm install --save-dev githook-js

Then wire the githook-install binary into your setup so hooks stay installed automatically:

{
  "scripts": {
    "postinstall": "githook-install"
  }
}

Usage

githook-install installs git hooks into .git/hooks/ and marks them executable (chmod 0755). It's idempotent — it compares a SHA-256 hash of the source and installed copy and only touches files that changed, printing whether each hook was installed, updated, or already up to date.

Two sources are supported in the consuming project, checked in this order:

1. git_hooks.yml (preferred)

A Lefthook-style config at the project root. Each top-level key is a git hook name; each hook has a commands map of named steps, each with a run script and an optional glob that gates whether the step runs, based on the files changed in that hook's diff (staged files for pre-commit, the pushed range for pre-push):

pre-commit:
  commands:
    block-main-commit:
      run: |
        current_branch=$(git rev-parse --abbrev-ref HEAD)
        if [ "$current_branch" = "main" ]; then
          echo "❌ Error: Direct commits to the 'main' branch are blocked."
          exit 1
        fi
    lint-staged:
      glob: "*.{js,ts,vue}"
      run: pnpm exec eslint --fix $(git diff --cached --name-only --diff-filter=ACM -- '*.js' '*.ts' '*.vue')

githook-install compiles each hook's commands into a single generated script and installs it. To add a new hook or command, edit git_hooks.yml and commit it — no other changes are needed.

2. scripts/git-hooks/ (fallback)

Used only when git_hooks.yml does not exist. One plain executable script per hook, named after git's standard hook names (pre-push, pre-commit, commit-msg, etc.), copied verbatim into .git/hooks/. To add a new hook this way, drop a new executable script in this directory and commit it.