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

claude-wsl-bridge

v0.3.2

Published

WSL clipboard bridge for Claude Code image paste support on Windows hosts.

Readme

claude-wsl-bridge

WSL 下为 Claude Code 提供 Windows 剪贴板图片桥接的独立项目。

适用范围

  • 运行环境:WSL / Linux
  • 宿主环境:Windows
  • 目标工具:Claude Code
  • 典型场景:在 WSL 中启动 Claude Code,通过 Windows 剪贴板桥接实现图片粘贴

当前状态

  • 已从用户级安装目录迁移运行时脚本到 runtime/
  • 已保留用户当前稳定可用的 Bash / PowerShell 方案
  • bin/ 入口现在直接调用项目内 runtime/,源码目录可独立校验
  • 当前项目目标是把现有可用工具逐步整理成适合 npm 发布的工程结构

目录结构

  • runtime/: 当前稳定运行的 Bash / PowerShell 脚本
  • bin/: npm bin 入口的 Node 包装器
  • docs/: 项目文档和教程
  • scripts/: 开发辅助脚本
  • src/: 后续如需迁移到 Node 实现时的源码目录

常用开发命令

npm run check
npm run install:local
npm run pack
npm pack --dry-run
node ./bin/ccw.js --help
node ./bin/ccw-doctor.js
node ./bin/ccw-pack.js /tmp/claude-wsl-bridge-dev.tar.gz

安装方式

本地开发安装

npm run install:local

未来 npm 全局安装目标

npm install -g claude-wsl-bridge

安装后预期提供的命令:

  • ccw
  • claude-wsl
  • ccw-doctor
  • ccw-pack

运行前提

以下依赖不由本包自动提供:

  • claude
  • powershell.exe
  • wslpath
  • 终端里的图片粘贴快捷键映射

如果缺少其中任何一项,CLI 能安装成功,但桥接能力不会完整可用。

发布准备

  • 发布说明见 docs/PUBLISHING.md
  • 当前 npm 包已具备以下命令入口:
    • ccw
    • claude-wsl
    • ccw-doctor
    • ccw-pack
  • 当前尚未执行真正的 npm publish,但已经完成项目内校验和 npm pack --dry-run
  • 当前许可证为 MIT
  • 当前已去掉 private: true,包已进入可发布状态

下一阶段

  1. 打磨 install:local,把项目内 runtime/ 同步到用户目录
  2. 设计 npm pack / npm publish 发布路径
  3. 评估是否增加 npm link / postinstall 支持