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

@lowxr/gitmoji

v1.0.0

Published

🧱 My customized Gitmoji Config - a fork of https://github.com/arvinxx/gitmoji-commit-workflow - just with several bug fixes and a cleaner look.

Readme


📦 @lowxr/gitmoji

💾 Installation

# Using npm
npm install -D @lowxr/gitmoji
# Using yarn
yarn add -D @lowxr/gitmoji
# Using pnpm
pnpm add -D @lowxr/gitmoji

🛠 How to use?


📅 gitmoji/changelog-config

[!NOTE] A brief explanation of its use and the most recommended one.

You need to create a semantic release file first, files config

[!IMPORTANT] To use conventional gitmoji chagelog at least in Semantic Release just add it

// release.config.js or .releaserc.js

const changelogConfig = {
 config: "@lowxr/gitmoji/changelog-config",
};

export default {
 branches: ["main"],
 plugins: [
  ["@semantic-release/commit-analyzer", changelogConfig],
  ["@semantic-release/release-notes-generator", changelogConfig],
 ],
};

gitmoji/commit-types

[!NOTE] These are the types I use to send commits to Github

1. Types

  • build: Changes to build system or dependencies
  • ci: Changes to CI configuration
  • docs: Documentation updates
  • feat: New features
  • fix: Bug fixes
  • perf: Performance improvements
  • refactor: Code refactoring
  • revert: Reverted changes
  • style: Code style changes
  • test: Test additions/modifications
  • chore: Maintenance tasks
  • wip: Work in progress (special case)

2. Usage

git commit -m "📝 docs: Update README.md with project details and installation instructions"

gitmoji/commitlint-config

[!NOTE] A brief explanation of its use and the most recommended one.

You need to create a commitlint file first, files config

// commitlint.config.js or .commitlintrc.js

export default {
 extends: ["@lowxr/gitmoji/commitlint-config"],
};

gitmoji/parser

[!NOTE] A brief explanation of its use and the most recommended one.

You need to create a semantic release file first, files config

[!IMPORTANT] The gitmoji parser is used in the Semantic Release configuration invidually, you would add only the parser and nothing else.

// release.config.js or .releaserc.js

import parserOpts from "@lowxr/gitmoji/parser";

const changelogConfig = {
 parserOpts,
};

export default {
 branches: ["main"],
 plugins: [
  ["@semantic-release/commit-analyzer", changelogConfig],
  ["@semantic-release/release-notes-generator", changelogConfig],
 ],
};

🎨 gitmoji/regexs

[!NOTE] It is used to export all the regexs needed for the previous configurations, but if you need emojis you can use it

🎯 Contributing

🔩 Reporting Issues

If you encounter any bugs or problems while using the tool, please open a new issue here. To help us assist you faster, include as much detail as possible, such as:

  • What you were trying to do.
  • Any error messages or console logs.
  • Your environment details (OS, versions, etc.)

The more info you provide, the quicker we can identify and fix the problem.

🔀 Pull Requests

Thanks for wanting to contribute! To submit improvements or fixes, please follow these steps:

  1. Clone this repository using git clone https://github.com/lowxr/gitmoji.git.
  2. Create a new branch from main with a clear, descriptive name, for example: git checkout -b feature/your-feature-name.
  3. Make your changes and commit them with clear, meaningful messages.
  4. Open a new pull request here, explaining what you added or fixed and why.

We’ll carefully review each PR and provide feedback if needed to help you get it merged.

📋 License

This repository is distributed under the terms of the MIT License.