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

@h1d3rone/claude-proxy

v0.2.3

Published

Node.js rewrite of claude-code-proxy with local Claude and Codex configuration management

Readme

claude-proxy

项目说明

claude-proxy 是一个本地版 Claude code代理工具。它会在本机提供 Claude 兼容的 中转站的codex模型 服务,把请求转发到 OpenAI 兼容上游,并管理 Claude Code 与 Codex 的本地配置。

安装

npm 快速安装:

npm install -g @h1d3rone/claude-proxy
claude-proxy config add

提示:包名带作用域,但实际命令仍然是 claude-proxy

Git 源码安装:

git clone https://github.com/H1d3rOne/claude-proxy.git
cd claude-proxy
npm install
npm link
claude-proxy config add

使用方法

claude-proxy config add
claude-proxy config use
claude-proxy config alt
claude-proxy config del
claude-proxy config claude
claude-proxy config get

claude-proxy start
claude-proxy stop

claude-proxy clean
claude-proxy clean claude
claude-proxy clean openai
claude-proxy update
  • config add:新增一组命名上游配置
  • config use:从已有配置中选择当前配置,并同步 model_provider / model / provider 节点中的 name / base_url / OPENAI_API_KEY 到 Codex
  • config alt:直接修改某个已保存的上游配置,包括 profile 的 name,不切换当前活动配置
  • config del:删除一个非当前激活的配置
  • config claude:只配置 Claude 相关部分
  • config get:查看配置文件、Claude、Codex 当前状态
  • start:启动本地代理服务器
  • stop:停止本地代理服务器
  • clean:一键清除全部受管配置
  • clean claude:只清除 Claude 配置
  • clean openai:只清除 OpenAI/Codex 配置
  • update:Update the current claude-proxy installation(仅手动命令)