Popularity
9.4
Stable
Activity
8.1
Declining
33,201
156
1,045
Programming language: JavaScript
License: MIT License
Tags:
QA Tools
Latest version: v5.0.6
husky alternatives and similar libraries
Based on the "QA Tools" category.
Alternatively, view husky alternatives based on common mentions on social networks and blogs.
Nutrient - The #1 PDF SDK Library
Bad PDFs = bad UX. Slow load times, broken annotations, clunky UX frustrates users. Nutrient’s PDF SDKs gives seamless document experiences, fast rendering, annotations, real-time collaboration, 100+ features. Used by 10K+ devs, serving ~half a billion users worldwide. Explore the SDK for free.
Promo
nutrient.io

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of husky or a related project?
README
husky
Modern native Git hooks made easy
Husky improves your commits and more 🐶 woof!
Install
npm install husky --save-dev
Usage
Edit package.json > prepare
script and run it once:
npm pkg set scripts.prepare="husky install"
npm run prepare
Add a hook:
npx husky add .husky/pre-commit "npm test"
git add .husky/pre-commit
Make a commit:
git commit -m "Keep calm and commit"
# `npm test` will run