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

fast-oss-cli

v1.0.1

Published

fast-oss aliyun oss cli

Downloads

3

Readme

fast-oss-cli

fast-oss nodejs 命令行工具
可以在前端项目构建完毕之后,直接将静态目录整个上传到OSS

安装

# npm
npm i fast-oss-cli -g

# yarn
yarn global add fast-oss-cli

用法

本地使用

  • 先创建本地OSS信息文件(只需要创建一次)
# 输入命令后,根据提示操作
fastoss --init
  • 然后就可以上传文件了
# 将本地tmp/abc目录下的所有文件和子目录上传到远程bfd-test-cdn/abc目录中
fastoss -l tmp/abc -rd bfd-test-cdn/abc

在jenkins中使用

服务器构建完成后,可以直接将构建完的静态目录直接上传到远程,在jenkins中追加使用fastoss即可

# 由于是服务端构建, 一般不使用本地OSS信息,而是直接指明OSS信息
fasstoss -l dist -rd bfd-test-cdn/foo-h5/dist --accessKeyId xxxxxx --accessKeySecret xxxxxxxxx

参数

-i, --init

创建本地OSS信息文件

-rd, --remoteDir

远程目录

-rf, --remoteFile

远程文件

# 如果要指明只上传一个文件,并且要完全自定义远程的文件名,使用-rf
fastoss -l tmp/111.txt -rf bfd-test-cdn/333.txt

-l, --local

本地目录或者文件

-f, --force

远程文件如果已经存在,强行覆盖

--accessKeyId

在命令行直接指明accessKeyId

--accessKeySecret

在命令行直接指明accessKeySecret

--bucket

在命令行直接指明bucket

--region

在命令行直接指明region