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

cmp-oss-plugin

v2.0.2

Published

JavaScript SDK for [腾讯对象存储&minio]

Downloads

57

Readme

  1. 项目说明

    用于文件上传, 上传至各种厂商的对象存储,目前支持的尝试有, 腾讯云cos, 易企秀eofs.

  2. 引入方式

    2.1 引入依赖

    ​ "cmp-oss-plugin": "^1.1.0"

    2.2 安装

    ​ npm install

  3. 项目使用

    let CmpOssPlugin = require('cmp-oss-plugin');
       
    const opts = {
      serverHost: 'http://test.eqxiu.cn',
      assetHost: 'http://asset.eqxiu.cn'
    }
    let ossPlugin = new CmpOssPlugin(opts);
    // 直接上传
    ossPlugin.uploadFile(file).then(res => {
    	resolve(res);
    })
       
    // 获取token
    ossPlugin.getTempToken().then(res => {
    	resolve(res);
    })
       
    // 使用token上传
    ossPlugin.uploadUseToken(file, token).then(res => {
    	resolve(res);
    })
  4. 参数说明

    1. new CmpCosPlugin(options)

      options参数:

      serverHost: 服务域名,用于获取token, 例如:http://test.eqxiu.cn / https://www.eqxiu.cn

      assetHost: 资源域名, 用户资源访问, 例如: http://asset.eqxiu.cn / http://test-asset.eqxiu.cn

      fileType:文件类型,1代表图片, 传此参数, 上传后会返回图片的宽,高,大小

      onUploadProgress: 上传过程中会调用此方法

      onError: 上传失败调用此方法

      onFileUploaded: 上传结束调用此方法

    2. getPrefixToken(prefix: string, fileName: string, fileType: string)

      prefix: 文件目录,一般为用户id

      fileName: 文件名

      fileType: 文件后缀, 默认为png,可不传

    3. getTempToken(fileType: string = 'png')

      获取临时token, 有效期1小时

    4. getPreviewToken(fileType: string = 'png')

      获取临时token, 用于预览,链接有"preview"标识,有效期1小时

    5. uploadFile(file: File)

      上传文件, 内部会自动获取token

    6. uploadUseToken(file: File, token: object)

      上传文件, 使用自己获取的token

    7. uploadBase64UseToken(base64: string, token: any)

      上传文件(base64), 使用自己获取的token

    8. uploadBase64(base64: string, suffix: string)

      suffix: 文件后缀, 默认png

      上传文件(base64), 内部会自动获取token