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

commit-jazzer

v1.1.5

Published

๐ŸŽธ Smart Git commit CLI that adds emojis and enforces Conventional Commits. Features intelligent commit message suggestions, customizable templates, and seamless integration with popular tools. Perfect for teams wanting consistent, readable git history.

Readme

commit-jazzer ๐ŸŽถ๐Ÿ’ฅ

Commitizen adapter for formatting commit messages with style and rhythm. ๐ŸŽธ๐ŸŽค

๐ŸŽธ Add style and rhythm to your commits! With commit-jazzer, every commit becomes more than just a messageโ€”it's a true masterpiece. Follow best practices and format your messages with emojis that add fun and professionalism to your development process.

Table of Contents

  1. ๐ŸŽฅ Demo
  2. ๐Ÿ” Description
  3. โšก Features
  4. ๐Ÿ’ป Installation and Usage
  5. โš™๏ธ Configuration
  6. ๐Ÿค Contributing
  7. ๐Ÿ“œ Code of Conduct
  8. ๐Ÿ”’ Security Policy
  9. ๐Ÿ‘ฅ Team
  10. ๐Ÿ“„ License

๐ŸŽฅ Demo

commit-jazzer

๐Ÿ” Description

commit-jazzer is a tool that introduces a touch of musical flair into your Git commit messages. Built on the solid foundation of Commitizen, it allows you to follow commit conventions and spice up your messages with emojis. Instead of just typing standard commit texts, you'll choose commit types, write descriptions, andโ€”just like in jazzโ€”improvise to create a symphony of commits.

๐ŸŽท Jazz your commits: It's not just about structureโ€”it's about creativity. Transform your commits into something dynamic, creative, and fun!

โšก Features

  • ๐ŸŽถ Musical Commit Messages: Format your commits with delightful emojis like ๐ŸŽธ, ๐Ÿ›, ๐Ÿ’„, and more.
  • โšก Quick Setup: Easy installation and integration into your project.
  • ๐ŸŽผ Predefined Commit Types: Choose from predefined types and descriptions to maintain consistency.
  • ๐Ÿ›  Bad Word Handling: Automatically handles undesirable words in commit messages and helps you avoid inappropriate expressions.
  • ๐Ÿ”ง Flexible Configuration: Customize commit templates and type schemes for a personal touch.

๐Ÿ’ป Installation and Usage

Globally

Install commitizen globally, if you have not already.

npm install commitizen -g

Install your preferred commitizen adapter globally (for example commit-jazzer).

npm install commit-jazzer -g

Create a .czrc file in your home directory, with path referring to the preferred, globally-installed, commitizen adapter

echo '{ "path": "commit-jazzer" }' > ~/.czrc

You are all set! Now cd into any git repository and use git cz and you will find the commit-jazzer prompt.

Or you can, add this configuration to your package.json:

"config": {
  "commitizen": {
    "path": "commit-jazzer"
  }
}

Locally

To install commit-jazzer as a development dependency, run::

npm install --save-dev commit-jazzer

Then, add this configuration to your package.json:

"config": {
  "commitizen": {
    "path": "node_modules/commit-jazzer"
  }
}

After installation, simply run:

git cz

โš™๏ธ Configuration

Configuration Types Support

This configuration file is used to customize the behavior of commit-jazzer without modifying the source code.

  • JSON format

    • .jazzer.config.json
    • jazzer.config.json
  • JavaScript format

    • .jazzer.config.js
    • jazzer.config.js
  • TypeScript format

    • .jazzer.config.ts
    • jazzer.config.ts

Example Configuration File

{
  "$schema": "https://zilero232.github.io/commit-jazzer/commit-jazzer-schema.json",
  "language": "en",
  "template": "{{type}}: {{emoji}} - {{title}}",
  "availableCommitTypes": ["init", "fix", "refactor"],
  "availablePromptQuestions": ["type", "title"],
  "baseCommitTypes": {
    "init": {
      "description": "Custom deploying message"
    }
  },
  "addCustomCommitTypes": {
    "custom": {
      "emoji": "๐Ÿš€",
      "code": ":rocket:",
      "description": "Deploying application"
    }
  },
  "baseQuestionsOptions": [
    {
      "key": "title",
      "message": "My custom message",
      "options": {
        "required": true,
        "skip": false,
        "validations": {
          "length": {
            "minMessageLength": 0,
            "maxMessageLength": 200
          }
        }
      }
    }
  ],
  "validateCommitBadWords": true,
  "badWordsOptions": {
    "checkHasProfaneWords": true,
    "clearMessage": true,
    "replaceProfaneWords": true,
    "options": {
      "additionalBlockWords": ["bogdan", "oleg", "nikita"],
      "excludedWords": ["fool"],
      "placeholder": "*",
      "overrideBlockWords": false
    }
  },
  "showBanner": true,
  "showBannerOptions": {
    "bannerText": "Look, I can change the name."
  }
}

๐Ÿค Contributing

We'd love for you to contribute to commit-jazzer! Whether it's reporting bugs, suggesting features, or submitting pull requests, your help is always appreciated.

How to contribute:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/your-feature).
  3. Make your changes.
  4. Commit your changes (git commit -am 'Add new feature').
  5. Push to the branch (git push origin feature/your-feature).
  6. Open a pull request.

๐Ÿ“œ Code of Conduct

Please follow our Code of Conduct when participating in this project to ensure a welcoming and productive atmosphere.

๐Ÿ”’ Security Policy

Security is our priority. If you encounter any issues, please read our full Security Policy to report vulnerabilities safely and responsibly.

๐Ÿ‘ฅ Team

These folks keep the project moving and are resources for help.

๐Ÿ“„ License

License commit-jazzer is licensed under the MIT License.

Be part of the musical process! ๐ŸŽถ Add some rhythm and style to your commits with commit-jazzer and turn your workflow into a masterpiece! ๐ŸŽธ