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

@zerocmf/aic

v0.1.2-dev.2

Published

Cloud resources management CLI - Qiniu, CDN, DNS, SSL

Readme

AIC - Cloud Resources CLI

CI npm version Node.js >=18 MIT License

云资源管理命令行工具,支持七牛云存储、CDN、阿里云 DNS 以及 SSL 证书管理。

功能特性

  • 存储操作: 上传、下载、列表、私有 URL、复制、移动、删除
  • CDN 管理: 创建、删除、上线、下线域名
  • SSL 证书: ACME DNS 验证申请证书(支持阿里云/Cloudflare/DNSPod)
  • DNS 管理: 列出、添加、删除 DNS 记录

安装

# 从 npm 安装
npm install -g @zerocmf/aic

# 或从源码安装
git clone https://github.com/daifuyang/aic.git
cd aic
npm install
npm run build
npm link

配置

配置文件位置:~/.config/aic/config.toml

[qiniu]
accessKey = "your_access_key"
secretKey = "your_secret_key"
bucket = "your_bucket"
domain = "cdn.example.com"
region = "z0"

[aliyun]
accessKeyId = "your_access_key_id"
accessKeySecret = "your_access_key_secret"

[acme]
path = "~/.acme.sh/acme.sh"
dnsProvider = "aliyun"
email = "[email protected]"

命令

存储操作

aic upload file.png                    # 上传文件
aic list                               # 列出文件
aic url image.png                      # 生成私有 URL
aic url image.png -e 86400            # 24 小时有效期
aic delete image.png                   # 删除文件
aic stat image.png                     # 文件信息
aic copy src.png dest.png             # 复制
aic move old.png new.png              # 移动

CDN 管理

aic cdn:create cdn.example.com --bucket my-bucket
aic cdn:list
aic cdn:info cdn.example.com
aic cdn:online cdn.example.com
aic cdn:offline cdn.example.com
aic cdn:delete cdn.example.com

SSL 证书

aic cert:issue cdn.example.com          # 申请证书
aic cert:issue "*.example.com"        # 泛域名
aic cert:issue cdn.example.com -e      # ECC 证书
aic cert:issue cdn.example.com -d cloudflare  # 指定 DNS
aic cert:upload my-cert domain.com cert.pem key.pem
aic cert:bind cdn.example.com <certId>
aic cert:list

DNS 管理

aic dns:list example.com
aic dns:add example.com @ A 192.168.1.1
aic dns:add example.com cdn CNAME cdn.qiniudns.com
aic dns:delete <recordId>

DNS Provider

支持的 DNS 提供商:aliyun、cloudflare、dnspod

License

MIT