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 🙏

© 2024 – Pkg Stats / Ryan Hefner

qupload

v0.4.1

Published

upload files to qiniu cli

Downloads

11

Readme

qupload npm version CircleCI

CLI上传七牛CDN

Install

npm install qupload

Config

通过配置文件.quploadrc--config参数指定JSON文件.
或者完全通过环境变量: QUPLOAD_ACCESS_KEY, QUPLOAD_SECRET_KEY, QUPLOAD_BUCKET, QUPLOAD_ZONE, QUPLOAD_DOMAIN.

{
  "accessKey": "foo",
  "secretKey": "bar",
  "bucket": "test",
  "zone": "z0",
  "domain": "http://cdn.example.com"
}
  • zone: 空间对应的机房. 华东: z0, 华北: z1, 华南: z2, 北美: na0. 默认z0
  • domain: cdn域名, 用于拼接下载地址, 可选

Usage

Usage: qupload [options] files|directories

Options:
  --version        Show version number                                 [boolean]
  --config, -c     Path to JSON config file                             [string]
  --recursive, -r  递归遍历目录                                        [boolean]
  --prefix, -p     上传key前缀                            [string] [default: ""]
  --use-hash       使用SHA1作为key                    [boolean] [default: false]
  --use-path       使用文件相对路径作为key前缀        [boolean] [default: false]
  --disable-key    禁用key, 使用七牛默认方式生成      [boolean] [default: false]
  --help           Show help                                           [boolean]

Example

假设有此文件: ./build/js/index.js

  • 上传单个文件
qupload ./build/js/index.js
# ✔ [./build/js/index.js] http://cdn.samuraime.com/index.js
  • 指定前缀, 使用原文件名作为文件名
qupload -r --prefix=test/ ./build/
# ✔ [build/js/index.js] http://cdn.samuraime.com/test/index.js
  • 指定前缀, 并且使用文件路径作为分割, 使用原文件名作为文件名
qupload -r --prefix=test/ --use-path ./build/
# ✔ [build/js/index.js] http://cdn.samuraime.com/test/js/index.js
  • 指定前缀, 并且使用文件路径作为分割, 使用 hash 作为文件名
qupload -r --prefix=test/ --use-path --use-hash ./build/
# ✔ [build/js/index.js] http://cdn.samuraime.com/test/js/b58d988070d02e44d27a6b019e23a1665bd1f790
  • 禁用 key 生成规则, 使用七牛上传策略saveKey字段所指定魔法变量生成 Key
qupload -r --disable-key ./build/
# ✔ [build/js/index.js] http://cdn.samuraime.com/FrWNmIBw0C5E0nprAZ4joWZb0feQ

License

MIT