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

commitsmile

v1.0.3

Published

Make smile on your commits

Downloads

100

Readme

CommitSmileBanner

output

What you get:

  • 🌈 Beautiful Commits
  • 📝 Standardized commit messages
  • 🎯 Simplified commit process

About package:

  • 🚀 Install & Use
  • ⚙️ Easy in Configuring
  • 🔧 High Customizable (Prompts, Formatters)
  • 📦 Support Monorepo
  • 📖 TSDocs (Internal documentation)
  • ♻️ Minified & Compressed
  • ✅ Support JS/TS & CJS/ESM

📜 List of Contest

Install

NPM

npm install -D commitsmile

PNPM

pnpm add -D commitsmile

Yarn

yarn add -D commitsmile

How to start

👋Hello! Glad to see you! There is order task to setup:

| Command | Description | | ----------------------- | ----------------------------------- | | pnpm i -D commitsmile | Install it at repo | | pnpm commitsmile init | Init and configure (Optional) | | pnpm commitsmile | Use! :D |

Commands

| Command | Description | | --------- | -------------------------- | | (default) | Commit Handler (CLI APP) | | init | Init config file (CLI APP) |

To get more information about commands, use --help

Config

Location / Naming

To find config we use c12 and our system.

Dedicated File

In Default execute app is looking for files names match /commitsmile.*\.(js|ts|mjs|cjs|mts|json|jsonc|json5|yaml|yml|toml)/iu

  • Name: commitsmile (letters can be uppercase or lowercase or mixed)
  • pre ext (optional)
  • Ext: js|ts|mjs|cjs|mts|json|jsonc|json5|yaml|yml|toml

examples:

  • commitsmile.discord.ts
  • coMMitSmile.json

Supports to:

| ✅ Supports too | | --------------- | | .config/ | | .rc |

package.json

With commitsmile property.

Default Config & Types

Package export defaultConfig which can be configured and deep merge your config!

import { defaultConfig } from "commitsmile";

export default defaultConfig({
	/* There config for defaultConfig */
}).deepMerge({
	/* There your config which will be merged with default config*/
});

More info in internal Documentation (Code)

Explaination

Formatters

There you can make your own formatters.

| Stage name | description | | ------------ | ------------------------------------------------------- | | format | Format formatted stages output (Final format of commit) | | type | Format of type | | scopes | Format of scopes | | isBreaking | Format of isBreaking | | title | Format of title |

Prompts

Part of Config responsible for Commit Stages.

| Stage name | type of prompt | Special properties | | ------------- | -------------- | ------------------------------------------------ | | type | multiselect | | | scopes | multiselect | workspaces - Show found workspaces in monorepo | | isBreaking | confirm | | | title | text | | | description | select | always - Always select that in select menu |

Every Step is Optional and can be skipped. To do it just use value false or undefined / void 0

finalCommands

Commands which will be executed at the end (In key order).

example:

{
  gitAdd: "git add .",
  commit: (results) => `git commit -m '${results.format()}' ${results.commitDescription ? `-m "${results.commitDescription}"` : ''}`,
  gitPush:"git push"
}

Short hands

Every shorthand it's provided by our parser.

| At | Description | From | To | | ------------------------------ | ------------------------------------- | ----------------------------- | ----------------------------------------------- | | Config.prompts.stage | If value is just a string | type:"What type of changes" | type:{message:"What type of changes"} | | Config.prompts.stage.options | If option is just a string | ["Option 1"] | [{value:"Option 1"}] and continue below logic | | Config.prompts.stage.options | If option has a value but not a label | [{value:"Option 1"}] | [{value:"Option 1", label:"Option 1"}] | | Config.prompts.stage.options | If option has a label but not a value | [{label:"Option 1"}] | [{value:"Option 1", label:"Option 1"}] |

Questions and Answers

Can i Remove emojis? (Yes)

Yes, you can do this,this way:

Removing All

If you want to remove them totally in CLI view commit

{
	emoji: false;
}

Removing From Label

If you want to remove them in CLI view but stay in commit

{
	emoji: {
		label: false;
	}
}

Removing From Value

If you want to remove them in commit but stay in CLI view

{
	emoji: {
		value: false;
	}
}