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

@wellau/installer

v0.1.0

Published

Installer wrapper for Codex, Claude Code, CC Switch, and Wellau setup.

Readme

@wellau/installer

Wellau Installer。

这个包不是 OpenAI 或 Anthropic 官方包。它会安装官方 @openai/codex@anthropic-ai/claude-code,安装/启动 Codex Desktop 和 Claude Desktop,并从 farion1231/cc-switch 的 GitHub Releases 安装 CC Switch。

npm 用法

npm install -g @wellau/installer
wellau all install
wellau codex install
wellau claude install

一键脚本

macOS/Linux:

curl -fsSL https://raw.githubusercontent.com/wellau/installer/main/scripts/install.sh | bash

Windows PowerShell:

iwr https://raw.githubusercontent.com/wellau/installer/main/scripts/install.ps1 -UseB | iex

脚本会先检查 Node.js 和 npm。如果缺失或版本过旧,会安装官方 Node.js v24.16.0

  • macOS: https://nodejs.org/dist/v24.16.0/node-v24.16.0.pkg
  • Windows: node-v24.16.0-x64.msinode-v24.16.0-arm64.msi
  • Linux: node-v24.16.0-linux-x64.tar.xznode-v24.16.0-linux-arm64.tar.xz

之后脚本会安装 Wellau 包,并执行:

wellau all install

wellau all install 会继续安装/检测:

  1. 官方 OpenAI Codex CLI
  2. Codex Desktop
  3. CC Switch
  4. 官方 Anthropic Claude Code CLI
  5. Claude Desktop
  6. CC Switch(已安装则跳过)
  7. Wellau 登录

跳过选项

默认 all 目标下,跳过 Codex Desktop 和 Claude Desktop:

bash scripts/install.sh --no-app

跳过 CC Switch:

bash scripts/install.sh --no-cc-switch

跳过 Wellau 登录:

bash scripts/install.sh --no-login

直接使用 Wellau CLI:

wellau all install --no-app --no-cc-switch --no-login
wellau codex install --no-app --no-cc-switch --no-login
wellau claude install --no-app --no-cc-switch --no-login

单独登录 Wellau:

wellau auth login

本地开发时,直接在仓库里执行 bash scripts/install.sh 会自动安装当前目录;也可以显式指定:

WELLAU_INSTALLER_PACKAGE=/path/to/installer bash scripts/install.sh

本地验证

npm run check
npm run test:docker

Docker 测试使用 --no-app,因为无界面 Linux 容器通常不能完成桌面应用安装。

Wellau 管理员发布

管理员只需要维护两类东西:

  • npm 包:@wellau/installer
  • 远端脚本:scripts/install.shscripts/install.ps1

建议流程:

  1. 更新 package.json 版本号。
  2. 在仓库根目录执行:
NPM_CONFIG_CACHE=/private/tmp/wellau-npm-cache npm pack --pack-destination dist/package
  1. 确认 dist/package/wellau-installer-0.1.0.tgz 可用。
  2. 确认 npm token 对 @wellau scope 有 publish 权限。
  3. 发布 npm:
npm publish --access public
  1. scripts/install.shscripts/install.ps1 上传到远端原始文件地址。

对外安装入口只需要:

  • npm:npm install -g @wellau/installer
  • macOS/Linux 脚本:curl -fsSL <remote>/install.sh | bash
  • Windows PowerShell 脚本:iwr <remote>/install.ps1 -UseB | iex