npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

format-commit

v0.4.0

Published

Lightweight CLI to standardize commit messages

Readme

format-commit

npm version Node.js Version npm downloads License: MIT

🚀 Lightweight CLI for consistent Git workflow formatting.

Standardize your commit messages and branch naming with configurable rules, and guide your development workflow through automated scripts. No bloat, no complexity — just clean, consistent Git practices.

Installation

npm i format-commit --save-dev

Usage

Add to your package.json scripts:

"scripts": {
  "commit": "format-commit",
  "branch": "format-commit --branch"
}

Then use:

npm run commit # to commit
npm run branch # to create a branch

Global Installation

Or install globally:

npm i -g format-commit
format-commit
format-commit --branch

Initial Setup

On first use, format-commit will prompt you to configure your commit and branch formats, then create a commit-config.json file.

To reconfigure later, run:

format-commit --config

Configuration

| Property | Description | | :------- | :---------- | | format | Commit title format:1 - (type) Name / 2 - (type) name3 - type: Name / 4 - type: name5 - type(scope) Name / 6 - type(scope) name7 - type(scope): Name / 8 - type(scope): name | | branchFormat | Branch naming format:1 - type/description2 - type/scope/description | | types | Allowed commit and branch types (default: feat, fix, core, test, config, doc) | | scopes | Scopes for commit/branch categorization (used in formats 5-8 for commits, format 2 for branches) | | minLength | Minimum length required for the commit title | | maxLength | Maximum length required for the commit title and branch description | | changeVersion | Version change policy:never - Always prompt for version changeonly on release branch - Only release branch commits require version changealways - All commits require version change | | releaseBranch | Main/release branch name (used if changeVersion = only on release branch) | | showAllVersionTypes | Show all version types or only main ones (major/minor/patch/custom) |

CLI Options

| Option | Description | | :----- | :---------- | | --config / -c | Generate or update configuration file | | --branch / -b | Create a new standardized branch | | --test / -t | Test mode - preview without executing Git commands |

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests.