Popularity
9.4
Growing
Activity
7.8
Declining
30,272
153
1,044
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.
-
JSHint
JSHint is a tool that helps to detect errors and potential problems in your JavaScript code -
dotenv-linter
⚡️Lightning-fast linter for .env files. Written in Rust 🦀 -
Typefont
The first open-source library that detects the font of a text in a image. -
Pre-evaluate code at buildtime
Pre-evaluate code at build-time with babel-macros -
JavaScript Standard Style
Opinionated, no-configuration style guide, style checker, and formatter
Amplication: open-source Node.js backend code generator
An open-source platform that helps developers build backends without spending time on boilerplate & repetitive coding. Including production-ready GraphQL & REST APIs, DB schema, DTOs, filtering, pagination, RBAC, & more.
Promo
amplication.com
* 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