Apr 23, 2019
Help developers discover the tools you use. Get visibility for your team's tech choices and contribute to the community's knowledge.
pre-commit checks your code for errors before you commit it. pre-commit is configurable. | Yarn caches every package it downloads so it never needs to again. It also parallelizes operations to maximize resource utilization so install times are faster than ever. |
debugger: make sure you don't commit a debugger statement;tabs: make sure your code uses leading spaces instead of tabs;whitespace: make sure you don't commit trailing whitespace;jslint: syntax check your javascript before you commit it;ci: run a quick test suite before you commit | - |
Statistics | |
GitHub Stars 802 | GitHub Stars 41.5K |
GitHub Forks 95 | GitHub Forks 2.7K |
Stacks 1.4K | Stacks 28.2K |
Followers 43 | Followers 13.5K |
Votes 0 | Votes 151 |
Pros & Cons | |
No community feedback yet | Pros
Cons
|
Integrations | |
| No integrations available | |

npm is the command-line interface to the npm ecosystem. It is battle-tested, surprisingly flexible, and used by hundreds of thousands of JavaScript developers every day.

RequireJS loads plain JavaScript files as well as more defined modules. It is optimized for in-browser use, including in a Web Worker, but it can be used in other JavaScript environments, like Rhino and Node. It implements the Asynchronous Module API. Using a modular script loader like RequireJS will improve the speed and quality of your code.

Browserify lets you require('modules') in the browser by bundling up all of your dependencies.

Component's philosophy is the UNIX philosophy of the web - to create a platform for small, reusable components that consist of JS, CSS, HTML, images, fonts, etc. With its well-defined specs, using Component means not worrying about most frontend problems such as package management, publishing components to a registry, or creating a custom build process for every single app.

diff-so-fancy builds on the good-lookin' output of git contrib's diff-highlight to upgrade your diffs' appearances.

It is a Git revision control client, implemented as a Windows shell extension and based on TortoiseSVN. It is free software released under the GNU General Public License.

A simple, zero-config-required local private npm registry. Comes out of the box with its own tiny database, and the ability to proxy other registries (eg. npmjs.org), caching the downloaded modules along the way.

It is a blazing fast terminal-UI for git written in Rust. You can inspect, commit, and amend changes. It has context-based help (no need to memorize tons of hot-keys).

It is the package installer for Python. You can use pip to install packages from the Python Package Index and other indexes.

If one of your developers doesn’t have node installed but modifies a JavaScript file, pre-commit automatically handles downloading and building node to run jshint without root. Pre-commit is a multi-language package manager for pre-commit hooks. You specify a list of hooks you want and pre-commit manages the installation and execution of any hook written in any language before every commit. pre-commit is specifically designed to not require root access.