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

cgc

v1.3.1

Published

git commit 规范化 可自定义

Downloads

35

Readme

git commit 规范化 格式 可自定义

建议安装 1.2.9 以上版本

默认格式(可自定义格式)

  • template: type: [name] #cardNo content (if no cardNo, then it can be #N/A)
  • example: test: [mike] #333 add edge case for login test

type only can be one of these types and their meaning as show follow:

  • feat: new feature
  • test: add or change some test case
  • refactor: refactor of the code and not change the behavior of code itself
  • style: format the code style, such as indent of code, not related to code itself
  • chore: changes to the build process or code infrastructure
  • fix: fix the bug
  • docs: documentation related, such add content to documentation or add some comments
  • revert: revert the previous commit
  • temporary: temporary change something maybe for pipeline
  • hotfix: fix the bug for emergency

安装:

 npm install -g cgc

初始化 默认参数

> cgc d 不输入option参数 则代表查看当前配置情况

// 设置默认名字
> cgc d -n name

// 设置默认格式
> cgc d -f "&type&: [&name&] #&cardId& &body&"

// 支持type, scope, name, cardId, body任意组装出需要的格式
// 默认为:feat: [chong] #N/A add new feature
// or: cgc d -f "&type&: &name& - #&cardId& &body&"
// or: cgc d -f "&type&(&scope&): &body&(&cardId&)"
// or: ...

// 重置回默认设置
> cgc d -r

使用

使用 cgc 命令 代替 git commit -m ""

> git add xxx
> cgc

问题

  • 设置默认名字时报如下错误:
undefined:1



SyntaxError: Unexpected end of JSON input
    at JSON.parse (<anonymous>)
    at /Users/chongqiang.chen/Desktop/Project/Learn/cgc/utils.js:11:30
    at FSReqCallback.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:63:3)

建议忽略,此 BUG 正在修复中,不影响任何操作,设置默认名字已经成功

  • 如何查看版本
  cgc -version or -v
  • 如何在本地项目中使用
  npm install -D cgc

  // update package.json
  "script" : {
    ...
    "cgc": "cgc"
    "cgc_d_n": "cgc d -n"
    ...
  }

  // run
  npm run cgc

github

custom-git-commit-msg-sample