0.0.2 • Published 3 years ago

@voyo/baidu-bos v0.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

BAIDU OSS UPLOAD

Usage

const {SDK} =require('@voyo/baidu-bos');

const sdk=new SDK({
  ak:'xxxx',
  sk:'xxxx',
  endpoint:'https://fsh.bcebos.com',
  bucket:'bucketName'
});

uploadDir

sdk.putDir({
  nativeDirPath:"/dist",    // native path
  targetDirPath:"/urlPath"  // bos path
}).then((result)=>{
  ...
})

uploadDirWithGzip

upload dir file with auto compress file

sdk.putDirGzip({
  nativeDirPath:"/dist",
  targetDirPath:"/urlPath" 
}).then(result=>{
  ...
})