1.0.0 • Published 3 years ago

@jswork/next-tx-cos-sdk v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
3 years ago

next-tx-cos-sdk

Tencent cos-nodejs-sdk wrapper.

version license size download

installation

npm install -S @jswork/next-tx-cos-sdk

apis

apiparamsdescription
get-desc balabala
put-desc balabala
del-desc balabala

usage

import NxTxCosSdk from '@jswork/next-tx-cos-sdk';

const config = {
  id: 'xxx',
  SecretId: 'xxxx',
  SecretKey: 'xxxxx'
};

// https://console.cloud.tencent.com/cos5/bucket
const nxCos = new NxTxCosSdk(config);

// create
nxCos
  .get({
    Bucket: 'img3-1301823685',
    Region: 'ap-chengdu'
  })
  .then((res) => {
    console.log(res);
  });

// // get
// nxCos.get().then((res) => {
//   console.log(res);
// });

// //delete
// nxCos
//   .del({
//     Bucket: 'img1-xxx',
//     Region: 'ap-chengdu'
//   })
//   .catch((err) => {
//     console.log(err);
//   });

resources

license

Code released under the MIT license.