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

@sglwsjxh/ffix

v1.1.3

Published

PowerShell 命令修复工具 —— 敲错命令了?fuck !! 自动修复

Readme

ffix ? fuck fix !!

在 powershell 里敲错命令了? fuck !!

PS C:\Users\mark3> got branch  
got: 我不认识这个命令  
PS C:\Users\mark3> fuck  
→ 建议执行:git branch

按 Enter 就执行了,就是这么简单

它干了什么

你敲错命令 → fuck 拿到报错 → 丢给 AI → 返回修复命令 → 你确认后执行

安装方法

npm i -g @sglwsjxh/ffix@latest
fuck install
pwsh

首次运行会自动创建 ~/.ffix/config.json,需要填写 API 信息:

{
    "baseUrl": "https://api.openai.com/v1",
    "apiKey": "sk-...",
    "model": "gpt-4o"
}

支持任何 OpenAI 兼容的 API

使用方法

# 敲错命令了
git brnch

# 让 AI 修一下
fuck
# → 建议执行:git branch
# 按 Enter 执行,Ctrl+C 取消

如果不想走交互式确认,可以在脚本中加 --confirm 参数走静默执行模式。

运行环境

  • PowerShell 7
  • Node.js 18+
  • OpenAI 兼容的 api

从源码开发

npm install           # 安装依赖
npm run build         # 编译
npm test              # 测试
npm run typecheck     # 类型检查
npx tsx src/main.ts   # 直接运行源码