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

@whdev/verify-commit

v1.0.0

Published

git提交校验

Downloads

4

Readme

@whdev/verify-commit

一个简单的 commit message 校验工具

库的依赖介绍

| terminal-link 在终端创建可以点击的链接 | picocolors 在终端控制颜色与格式

安装与使用

使用 simple-git-hooks 运行

pnpm add -D @whdev/verify-commit simple-git-hooks
# OR
npm i -D @whdev/verify-commit simple-git-hooks

添加配置项到 package.json

# 使用 npx + bin 运行
npm pkg set simple-git-hooks.commit-msg='npx whdev-verify-commit $1'

# OR 使用 pnpm + bin 运行
npm pkg set simple-git-hooks.commit-msg='pnpm whdev-verify-commit $1'

# OR 使用 node 运行
npm pkg set simple-git-hooks.commit-msg='node ./node_modules/@whdev/verify-commit/index.js $1'

注册 git-hooks

simple-git-hooks 有更新时,需要重新注册

npx simple-git-hooks

添加 prepare 脚本,可以在 install 时自动注册已经配置的 git-hooks,第一次使用时需要手动运行一次 npm run prepare

npm pkg set scripts.prepare="npx simple-git-hooks"

使用 husky 运行

pnpm dlx husky-init && pnpm add -D @whdev/verify-commit
# OR
npx husky-init && npm i -D @whdev/verify-commit

注册 git-hooks

npx husky add .husky/commit-msg 'npx whdev-verify-commit $1'

相关链接