Popularity
9.5
Stable
Activity
7.9
Declining
30,321
154
1,044
Programming language: JavaScript
License: MIT License
Tags:
Miscellaneous
Latest version: v5.0.6
husky alternatives and similar modules
Based on the "Miscellaneous" category.
Alternatively, view husky alternatives based on common mentions on social networks and blogs.
-
Electron
:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS -
cheerio
The fast, flexible, and elegant library for parsing and manipulating HTML and XML. -
jsdom
A JavaScript implementation of various web standards, for use with Node.js -
patch-package
Fix broken node modules instantly ๐๐ฝโโ๏ธ๐จ -
webworker-threads
Lightweight Web Worker API implementation with native threads -
mem
Memoize functions - an optimization technique used to speed up consecutive function calls by caching the result of calls with identical input -
dot-prop
Get, set, or delete a property from a nested object using a dot path -
basic-ftp
FTP client for Node.js, supports FTPS over TLS, passive mode over IPv6, async/await, and Typescript. -
schemapack
Create a schema object to encode/decode your JSON in to a compact byte buffer with no overhead. -
nar
node.js application archive - create self-contained binary like executable applications that are ready to ship and run -
cashify
๐ธ Lightweight currency conversion library, successor of money.js -
stringify-object
Stringify an object/array like JSON.stringify just without all the double-quotes -
node-video-lib
Node.js Video Library / MP4 & FLV parser / MP4 builder / HLS muxer -
resolve-from
Resolve the path of a module like require.resolve() but from a given path
Appwrite - The open-source backend cloud platform
The open-source backend cloud platform for developing Web, Mobile, and Flutter applications. You can set up your backend faster with real-time APIs for authentication, databases, file 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?
Popular Comparisons
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