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-multipart-uploader.js

v0.0.6

Published

aliyun oss upload component powered by simple-uploader.js(dolymood <[email protected]>)

Downloads

3

Readme

simple-oss-uploader.js

oss-multipart-uploader.js基于simple-uploader.js改造,用于阿里云OSS分片上传前端组件

特性

  • 和后端接口配合,防止阿里云OSS的access-keyaccess-secret配置于前端代码,后端代码请参考demo-oss

  • 更多特性请参考simple-uploader.js

安装

npm:

npm install oss-multipart-uploader.js

或者直接 git clone:

git clone https://gitee.com/xwxsee/oss-uploader.git

使用

创建一个 Uploader 实例:

var r = new Uploader({
  // 分片数据上传接口
  target: 'http://localhost:8080/oss/v1/multiple_upload/data',
  // oss分片上传初始化接口
  ossInitTarget: 'http://localhost:8080/oss/v1/multiple_upload/init',
  // oss分片上传完成回调接口
  ossCompleteTarget: 'http://localhost:8080/oss/v1/multiple_upload/complete',
  chunkSize: 1024 * 1024,
  testChunks: false,
  uploadMethod: 'POST',
  // object关联实体,可用于oss的object分类(文件夹)
  ossRelateInst: 'temp',
  // object关联实体id,可用于oss的object分类(文件夹)
  ossRelateInstId: '',
  // oss的bucket名称
  bucketName: 'clownjee-test',
  simultaneousUploads: 1,
  headers: {
    'AUTH_TOKEN': '00d1b0a6-0664-4b8a-b855-862d4e295913'
  },
  // checkChunkUploadedByResponse: function (chunk, message) {
  //   var objMessage = {}
  //   try {
  //     objMessage = JSON.parse(message)
  //   } catch (e) {}
  //   // fake response
  //   // objMessage.uploaded_chunks = [2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 17, 20, 21]
  //   // check the chunk is uploaded
  //   return (objMessage.uploaded_chunks || []).indexOf(chunk.offset + 1) >= 0
  // }
});
// 如果不支持 需要降级的地方
if (!uploader.support) location.href = '/some-old-crappy-uploader'

更多使用方法请参考simple-uploader.js

运行demo

cd ./samples/Node.js
node app.js