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

gix-cli

v1.2.2

Published

A Git extension CLI tool

Readme

🧰 gix

🇨🇳 中文文档 | 🇺🇸 English

gix 是一个 Git 扩展命令行工具,专为合并提交、强推等 Git 流程优化而设计,提供交互式体验和类型安全支持。


🚀 功能特性

  • 🔧 交互式合并多个 Git 提交
  • 💬 自定义提交信息
  • 🚦 自动确认是否强推(默认开启)
  • ♻️ 快速取消所有本地未推送提交(软重置)
  • 🧱 使用 TypeScript 编写,类型安全
  • 🔌 命令模块化设计,易于扩展

📦 安装方式

npm install -g gix-cli

安装后即可全局使用:

gix merge

🛠 使用示例

合并提交

gix merge

交互输入:

  • 起始和结束 commit(可选)
  • 新的 commit 信息
  • 是否强推

或直接命令行执行:

gix merge -f <from> -m "你的提交信息"

压缩提交(Squash)

gix squash -n 3       # 合并最近 3 次提交
gix squash --all      # 从第一个提交开始合并(全量 squash)

检查当前 Git 状态

gix doctor
  • 检查 Git 和 Node 版本
  • 当前是否为 Git 仓库
  • 工作区是否干净
  • 是否配置远程仓库
  • 当前所在分支

取消所有本地提交(软重置至远程)

gix reset
  • 重置当前分支到远程 origin/branch
  • 保留所有文件变更
  • 仅移除未推送的 commit

📄 License

MIT © 2025 Li Kai