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

@qihoo/kuaic

v0.1.3

Published

kuaic_cli

Readme

kuaic_cli

360快传 CLI 工具

环境要求

Node.js >= 22

安装

npm install -g @qihoo/kuaic

命令

认证相关

# 登录
kuaic auth login <token>
# token 从 360快传号开放平台获取:https://open.360kuai.com/manage/token

# 查看当前登录状态
kuaic auth status

# 退出登录
kuaic auth logout

发布文章

kuaic publish article [options]

参数说明:

| 参数 | 简写 | 说明 | 必填 | |------|------|------|------| | --title | -t | 文章标题 | ✓ | | --content | -c | 文章内容(文件路径或直接内容) | ✓ |

内容格式:

--content 既可以是文件路径,也可以是直接的正文内容,按以下规则处理:

| 输入 | 处理方式 | |------|----------| | .md / .markdown 文件 | 自动转成 HTML 再发布 | | .html / .txt 等其它文件 | 读取后原样发布 | | 直接传字符串(含 < 或换行) | 当作正文原样发布,不会误读成文件 | | 直接传单行纯文本 | 若恰好等于某个存在的文件名会被当文件读取,否则作正文 |

使用示例:

# markdown 文件 → 自动转 HTML 发布(推荐)
kuaic publish article -t "文章标题" -c ./article.md

# HTML 文件 → 原样发布
kuaic publish article -t "文章标题" -c ./article.html

# 直接传 HTML 字符串
kuaic publish article -t "文章标题" -c "<p>你好</p><p>第二段</p>"