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

oss-publish-webpack-plugin

v1.5.1

Published

a webpack(V3/V4) plugin for publish vue project to Aliyun OSS and Qiniu Kodo.

Downloads

43

Readme

npm i --save-dev oss-publish-webpack-plugin

该插件可以帮助你在完成前端单页面应用项目在完成编译打包后,将 dist 目录中的内容发布到云计算运营商的对象存储桶(空间)中,点此 查看 目前已支持(和计划支持)的云计算运营商情况。

1. webpack.config.js 配置

下面仅为示例代码,具体详细描述查看下文 构造方法参数描述

const OSSPublishPlugin = require('oss-publish-webpack-plugin')
module.exports = {
  // ......
  plugins: [
    // ...... 等其他webpack插件
    new OSSPublishPlugin({
      // 构造方法配置参数, 下面仅为示例,具体描述见后面构造方法参数描述
      provider: 'qiniu',
      providerConfig:  {
        region: 'Zone_z2',
        accessKey: 'P********************b',
        secretKey: 'd********************A',
        bucket: '{bucketName}'
      },
      autoPublish: true,
      clearPrefixList: ['static/css', 'static/js', 'static/img']
    })
  ]
}

2. vue.config.js 配置(基于 webpack-chain

下面仅为示例代码,具体详细描述查看下文 构造方法参数描述

const OSSPublishPlugin = require('oss-publish-webpack-plugin')
module.exports = {
  // ......
  chainWebpack: config => {
    // ......其他 config 定义逻辑, 
    // Tips: chain-webpack模式支持通过逻辑代码根据当前环境使用对应的发布配置
    config.plugin('oss-plugin').use(OSSPublishPlugin, [{ 
      provider: 'qiniu',
      providerConfig:  { /** ...同上 */ },
      autoPublish: true,
      clearPrefixList: ['static/css', 'static/js', 'static/img']
    }])
  }
}

以下具体介绍 oss-publish-webpack-plugin 支持的构造方法参数

|参数名 | 描述 |类型 | 默认值 | |:-- |:--|:-- |:--| | provider | 云计算运营商标识(详见下文 provider 介绍) | String | 'aliyun' | | providerConfig 重要 |运营商SDK对应工具方法的配置对象(详见下文 providerConfig 介绍)| Object | -- | | clearPrefixList |每次上传文件前需要清空存储桶中文件前缀,如果不传或空数组则代表不需要清空| Array | [] | | autoPublish | 是否无需命令行询问直接在编译后上传云端, true表示直接上传,false则需要询问后发布 | Boolean | false| | answer | 当 autoPublish 为false时,定义发布前命令行询问后填写的正确回复选项,输入数组内任一值都允许发布 | Array | ['y','Y','yes'] | | thread | 定义最多支持同时执行的上传任务数,性能和网速越强,数额可以设置越大,建议取数在 1~10之间 | Number | 5 |

provider 云计算运营商标识

| 运营商名称 | 标识 | 状态 | 支持日期 | |:-- |:--|:--|:--| |阿里云 OSS | aliyun | V0.3.0 已支持 | 2022-12-27 | |七牛云 Kodo | qiniu | V0.9.0 已支持 | 2022-12-28 | |腾讯云 COS | tencent | v1.2.0 已支持 | 2022-12-29 | |华为云 OBS | huaweicloud | v1.4.0 已支持 | 2023-01-16 | |亚马逊云 S3 | aws | v1.5.0 BETA | 2023-01-17 |

providerConfig 对象存储配置详述

  1. 阿里云 OSS

|参数名 | 类型 | 描述 | |:-- |:--|:-- | |region | String | 存储桶所在地域名称,以华东1(杭州)为例,Region填写为oss-cn-hangzhou,点击查看公共云下OSS Region详细对照表 | |accessKeyId | String | 阿里云账号的accessKeyId。注意:阿里云账号AccessKey拥有所有API的访问权限,风险很高。强烈建议您创建并使用RAM用户进行API访问或日常运维,请登录RAM控制台创建RAM用户 | |accessKeySecret | String | 阿里云账号的accessKeySecret | |bucket | String | 存储桶的名称 |

  1. 七牛云 Kodo

|参数名 | 类型 | 描述 | |:-- |:--|:-- | |region | String | 存储空间所在地域标识:华东 Zone_z0、 华北 Zone_z1、 华南 Zone_z2 和 北美 Zone_na0 | |accessKey | String | 七牛云账号的accessKey | |secretKey | String | 七牛云账号的secretKey | |bucket | String | 存储空间的名称 |

  1. 腾讯云 COS

|参数名 | 类型 | 描述 | |:-- |:--|:-- | |region | String | 腾讯云存储桶托管机房分布地区的地域标识,以广州为例,Region填写为ap-guangzhou,点击查看公有云地域列表 | |secretId | String | 腾讯云账号的secretId | |secretKey | String | 腾讯云账号的secretKey | |bucket | String | 存储桶的名称 |

  1. 华为云 OBS

|参数名 | 类型 | 描述 | |:-- |:--|:-- | |server | String | 华为云存储桶地域标识(EndPoint),在存储桶 -> 概览 -> 基本信息 中即可查到 EndPoint | |access_key_id | String | 华为云账号的访问密钥ID | |secret_access_key | String | 华为云账号的访问密钥 | |bucket | String | 存储桶的名称 |

  1. AWS S3

|参数名 | 类型 | 描述 | |:-- |:--|:-- | |region | String | 亚马逊云存储空间服务所在地域标识(EndPoint),点此查看AWS服务端点列表 | |accessKeyId | String | 亚马逊云账号的访问密钥ID | |secretAccessKey | String | 亚马逊云账号的访问密钥 | |bucket | String | 存储桶的名称 |

阿里云OSS存储桶配置引导

七牛云kodo存储桶配置引导

  • 查看七牛云 静态页面管理 引导说明 【温馨提示:本插件会将编译打包后的 dist 目录中 index.html 文件复制出一个新的文件并命名为 errno-404,同时会一并上传到七牛云存储空间,不需要开发者再单独操作】

腾讯云COS存储桶配置引导

华为云OBS存储桶配置引导

亚马逊云 S3 存储桶配置引导

验证中,后续补充...