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 🙏

© 2024 – Pkg Stats / Ryan Hefner

git-scm-hooks

v0.2.0

Published

<p align="center"> <a href="https://www.npmjs.com/package/git-scm-hooks" target="_blank" rel="noopener noreferrer"> <img src="https://api.iconify.design/pajamas:hook.svg?color=%23fd610d" alt="logo" width='100'/></a> </p>

Downloads

434

Readme

What is a git hook?

A git hook is a command or script that is going to be run every time you perform a git action, like git commit or git push.

If the execution of a git hook fails, then the git action aborts.

For example, if you want to run linter on every commit to ensure code quality in your project, then you can create a pre-commit hook that would call npx lint-staged.

Check out lint-staged. It works really well with git-scm-hooks.

You can look up about git hooks on the Pro Git book.

When to use it

git-scm-hooks works well for small-sized projects when you need quickly set up hooks and forget about it.

However, this package requires you to manually apply the changes to git hooks. If you update them often, this is probably not the best choice.

Also, this package allows you to set only one command per git hook.

If you need multiple verbose commands per git hook, flexible configuration or automatic update of git hooks, please check out the other packages:

Usage

Add git-scm-hooks to the project

  1. Install git-scm-hooks as a dev dependency:

    npm install git-scm-hooks@latest --save-dev
  2. Add git-hooks to your package.json. Fill it with git hooks and the corresponding commands.

    For example:

    {
       "script": {
         "prepare": "git-scm-hooks",
       },
      "git-hooks": {
        "pre-commit": "npx lint-staged",
        "pre-push": "cd ../../ && npm run format",
    
        // All unused hooks will be removed automatically by default
        // but you can use the `preserveUnused` option like following to prevent this behavior
    
        // if you'd prefer preserve all unused hooks
        "preserveUnused": true,
    
        // if you'd prefer preserve specific unused hooks
        "preserveUnused": ["commit-msg"]
      }
    }

    This configuration is going to run all linters on every commit and formatter on push.

  3. Config from file config

  • Create git-hooks.config.{js|ts} file in the root of your project

    import { defineConfig } from 'git-scm-hooks';
    
    export default defineConfig({
      "pre-commit": "npx lint-staged",
      "pre-push": "cd ../../ && npm run format"
    })
  1. Run the CLI script to update the git hooks with the commands from the config:

    # [Optional] These 2 steps can be skipped for non-husky users
    git config core.hooksPath .git/hooks/
    rm -rf .git/hooks
    
    # Update ./git/hooks
    npx git-scm-hooks

Now all the git hooks are created.

Update git hooks command

  1. Change the configuration.

  2. Run npx git-scm-hooks from the root of your project.

Note for yarn2 users: Please run yarn dlx git-scm-hooks instead of the command above. More info on dlx

Note that you should manually run npx git-scm-hooks every time you change a command.

{
  "pre-commit": "npx lint-staged",
  "pre-push": "cd ../../ && npm run format"
}

If you need to have multiple configuration files or just your-own configuration file, you install hooks manually from it by npx git-scm-hooks my-config.

Uninstall git-scm-hooks

Uninstallation will remove all the existing git hooks.

npm uninstall git-scm-hooks

Common issues

I want to skip git hooks!

You should use --no-verify option

https://bobbyhadz.com/blog/git-commit-skip-hooks#skip-git-commit-hooks

When migrating from husky git hooks are not running

Why is this happening?

Husky might change the core.gitHooks value to .husky, this way, git hooks would search .husky directory instead of .git/hooks/.

Read more on git configuration in Git book

You can check it by running this command inside of your repo:

git config core.hooksPath

If it outputs .husky then this is your case

How to fix?

you need to point core.gitHooks value to your-awesome-project/.git/hooks. You can use this command:

git config core.hooksPath .git/hooks/

validate the value is set:

git config core.hooksPath

should output: .git/hooks/

Then remove the .husky folder that are generated previously by husky.