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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pierred/commity

v2.0.0

Published

Setup commits convention fast & simple.

Downloads

18

Readme

Commity

npm version last commit

Commity is a command line tool that will help you with commits conventions. You can configure Commity fast & easily so every collaborators can follow the commit convention you need.

Requirement

node >= 14.16.0

Installation

npm i -g @pierred/commity

or

npm i -D @pierred/commity

Get started

Warning If your git diff tree is not clean, you may not want to use -a (--addAll) option.

npm i -g @pierred/commity
commity init
commity -a

or

npm i -D @pierred/commity
npx commity init
npx commity -a

CLI

commity ìnit <options>

Create a new commity.json configuration file.

Note If a configuration file already exists, you can reset the configuration file via rich-interaction.

--overwrite alias -o (works with init)

commity <options>

Run Commity, allow to commit from chunks via rich-interaction. Workspace must be git initialized and commity friendly.

--addAll alias -a

Add all changes to the index (git add --all) before commit.

--push alias -p

Push to remote after commit.

Note If cannot push e.g. because your branch has no upstream branch, commity will be able to commit anyway.

--help alias -h

Return usage informations.

--version

Bump version.

Configuration

You can setup chunks & render in commity.json file.

{
  "chunks": [
    {
      "scope": {
        "label": "Select the type of change that you're committing",
        "type": "select",
        "selectOptions": [
          {
            "value": "feat",
            "description": "A new feature"
          },
          {
            "value": "fix",
            "description": "A bug fix"
          },
          {
            "value": "docs",
            "description": "Documentation only changes"
          },
          {
            "value": "refactor",
            "description": "Changes that neither fixes a bug or adds a feature"
          },
          {
            "value": "spec",
            "description": "Changes that affect unit tests"
          },
          {
            "value": "pkg",
            "description": "Changes that affect package (deps, config, readme...)"
          }
        ]
      }
    },
    {
      "message": {
        "label": "Choose the commit message",
        "decorations": {
          "prefix": ": "
        }
      }
    },
    {
      "ticket": {
        "label": "What is the issue id",
        "decorations": {
          "prefix": " #"
        },
        "required": false
      }
    }
  ],
  "render": "{{scope}}{{ticket}}{{message}}"
}

Each chunk is identified via the key and can be rendered as desired in render area.

Chunk

type string required

Can be simple (default value) or select.

label string required

Chunk description.

selectOptions {value: string, description: string} required with type = "select"

Choices for the chunk.

required boolean

Weither the chunk is required.

decorations {prefix: string}

Allow to decorate optional chunks so it don't mess the final render if the chunk is optional & skipped. If the chunk is required, it's same as decorating in render directly.

render

Formatted commit, replacing {{chunk's key}} with the user input.

More features incoming :tada:

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!