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

commitgo

v1.0.0

Published

commitgo is a command-line tool written in Node.js that simplifies and automates your git submission process.

Readme

commitgo

commitgo 是一个简单的命令行工具,用来把日常 Git 提交变得更安全、更省事。

它会检查当前仓库、校验提交信息、预览本次改动文件,并让你选择是否推送。

commitgo 使用流程

功能

  • 提交前预览改动文件
  • 按 Conventional Commits 校验提交信息
  • 可以选择提交并推送、只提交、取消
  • 在正常终端里支持上下方向键选择
  • 支持快捷参数,减少重复输入
  • 安全传递提交信息,避免命令拼接问题

安装

npm install -g commitgo

或者:

pnpm install -g commitgo

使用

在 Git 仓库中运行:

commitgo

输入提交信息后,commitgo 会展示本次将要提交的文件。

commitgo

Types: feat, fix, docs, release, style, workflow, types, ci, revert, wip, build, perf, dx, chore, refactor, test
Format: type(scope): message

Message:
  > feat: add shortcut flags

Message
  feat: add shortcut flags

Files
  M  src/main.js
  M  src/commit-workflow.js
  A  src/args.js

Action
  > commit + push
    commit only
    cancel

快捷参数

跳过提交信息输入:

commitgo -m "feat: add shortcut flags"

只提交,不推送:

commitgo -m "feat: add shortcut flags" --no-push

直接提交并推送:

commitgo --message "fix: push safely" --push

提交信息格式

commitgo 支持这些提交类型:

feat, fix, docs, release, style, workflow, types, ci, revert, wip, build, perf, dx, chore, refactor, test

示例:

feat: add shortcut flags
fix(cli): handle invalid action
docs: rewrite readme

使用要求

  • Node.js 14 或更高版本
  • Git
  • 如果需要推送,请先配置好远程仓库

本地开发

pnpm install
pnpm test

License

ISC