Popularity
9.3
Growing
Activity
8.2
Growing
28,678
152
1,007
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
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.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