@blueshit/oss-client
TypeScript icon, indicating that this package has built-in type declarations

1.3.1 • Public • Published

oss-client

阿里云 OSS 客户端

Install

const OSSClient = require("@blueshit/oss-client").default;

const client = new OSSClient({
  accessKeyId: "xxxxx",
  accessKeySecret: "xxxxxxx",
  bucket: "test",
  endpoint: "oss-cn-shenzhen.aliyuncs.com",
  prefix: "test/"
});

// 通过 Buffer 上传
const data = fs.readFileSync("icon.png");
client.putObject("icon.png", data)
  .then(console.log)
  .catch(console.log);

// 通过 Stream 上传
const stream = fs.createReadStream("icon.png");
client.putObject("icon.png", stream)
  .then(console.log)
  .catch(console.log);

Readme

Keywords

Package Sidebar

Install

npm i @blueshit/oss-client

Weekly Downloads

2

Version

1.3.1

License

MIT

Unpacked Size

11.2 kB

Total Files

5

Last publish

Collaborators

  • leizongmin
  • yourtion