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

@caixuan-cc/cli

v0.3.1

Published

Caixuan CLI - manage spaces, shares, docs and members

Readme

Caixuan CLI

English · 中文 · Français · Español · Deutsch · Русский · 日本語 · 한국어

Caixuan 平台的命令行工具,用于在终端或自动化脚本中管理空间、分享、文档与空间成员。

环境要求

  • Node.js >= 18

安装

npm install -g @caixuan-cc/cli

认证

# 浏览器 OAuth(需要 Web 端 /cli/auth 页面)
caixuan login

# 或手动设置 Token
caixuan config set-token <token>
caixuan config show

配置保存在 ~/.caixuan/config.json

环境变量覆盖:

  • CAIXUAN_CONFIG_DIR — 配置目录
  • CAIXUAN_API_BASE — API 基础地址(默认 https://app.caixuan.cc/api

快速开始

caixuan login
caixuan space list
caixuan space select <space-id>
caixuan share list --json
caixuan doc create --file ./deck.pptx
caixuan member list

典型场景

上传并分享、密码保护、限时失效、付费查看、邀请成员、CI 自动发布等端到端示例,见 docs/use-cases.zh-CN.md

命令概览

| 分组 | 命令 | |------|------| | 认证 | login, logout | | 配置 | config show, config set-token, config set-space, config set-api-base | | 空间 | space list, space current, space select, space get | | 分享 | share list, share get, share create, share update, share enable, share disable, share delete | | 文档 | doc list, doc get, doc create, doc update, doc delete | | 成员 | member list, member get, member create, member update, member delete |

JSON 输出(适合 AI Agent)

任意命令加上 --json 可输出结构化数据:

{
  "ok": true,
  "data": { ... },
  "meta": { "count": 42 }
}

许可证

MIT