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

@titenq/conventional-commits

v1.0.0

Published

Interactive CLI for creating Conventional Commits with emojis. A development dependency that standardizes Git commit messages through guided prompts.

Readme

🚀 conventional-commits

A CLI tool for creating semantic git commits with emoji support, powered by Conventional Commits.

Instead of manually typing commit prefixes, conventional-commits guides you through an interactive prompt to choose a commit type, write your message, and automatically format commits with the proper convention.

✨ Features

  • ✅ Curated list of commit types with emojis and descriptions
  • 🖥️ Interactive CLI using inquirer
  • 🔧 Seamless Git hooks integration with husky
  • 📦 Built with TypeScript for type safety
  • ⚙️ Automatic scope detection from commit messages
  • ⚠️ Breaking change indicator support

📦 Installation

Install conventional-commits as a development dependency:

npm i -D @titenq/conventional-commits

Initialize Git hooks

npx conventional-commits-init

🚀 Usage

git commit -m "commit message"

Then follow the interactive prompts:

? Select the commit type:
❯ 🎉 init — Project initialization
  📚 docs — Documentation changes
  🐛 fix — Bug fixes
  ✨ feat — New features
  ♻️ refactor — Code refactoring without behavior changes
  ⚡️ perf — Performance improvements
  💄 style — Code style changes (no logic change)
  🧪 test — Adding or updating tests
  🗃️ raw — Changes to raw data/files
  🧹 cleanup — Cleaning up code or files
(Use arrow keys to reveal more choices)

Output:

✔ Select the commit type: 📚 docs — Documentation changes
✅ Commit message updated to: 📚 docs: update README.md
[main 9099229] 📚 docs: update README.md

Commit message with scope

git commit -m "(scope) commit message"
✅ Commit message updated to: 🐛 fix(scope): commit message

Commit message with ! to draw attention to breaking change

git commit -m "! commit message"
✅ Commit message updated to: ✨ feat!: commit message

Commit message with scope an ! to draw attention to breaking change

git commit -m "(scope)! commit message"
✅ Commit message updated to: 🐛 fix(scope)!: commit message

Run without -m flag for full interactive experience:

git commit
? Choose a commit type:
  🎉 init — Project initialization
  📚 docs — Documentation changes
  🐛 fix — Bug fixes
  ...
? Type a commit message:

🆘 Troubleshooting

If you use ! at the beginning of a commit message, wrap the message in single quotes '!commit message', or add a space after ! "! commit message".

git commit -m '!commit message'   // ✅
git commit -m "! commit message"  // ✅
git commit -m "!commit message"   // ❌

📜 Commit Types

| Emoji | Type | Description | |--------|----------|-------------| | 🎉 | init | Project initialization | | 📚 | docs | Documentation changes | | 🐛 | fix | Bug fixes | | ✨ | feat | New features | | ♻️ | refactor | Code refactoring without behavior changes | | ⚡️ | perf | Performance improvements | | 💄 | style | Code style changes (no logic change) | | 🧪 | test | Adding or updating tests | | 🗃️ | raw | Changes to raw data/files | | 🧹 | cleanup | Cleaning up code or files | | 🗑️ | remove | Removing files or code | | 🧱 | ci | Continuous integration changes | | 📦 | build | Build process or dependency changes | | 🛠️ | chore | Maintenance tasks | | ⏪ | revert | Reverting previous commits | | 🔧 | env | Environment variable/config changes |


📦 Uninstall

npm uninstall @titenq/conventional-commits husky

Delete .husky folder

Delete the script "prepare": "husky" from package.json


📜 License

This project is licensed under the GPL3.0 License - see the LICENSE file for details.