2.6.5 • Published 7 months ago

tetap-tos-sdk v2.6.5

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Volcengine Object Storage(TOS) JS SDK

Install

yarn

yarn add @volcengine/tos-sdk

npm

npm i @volcengine/tos-sdk

Use JS SDK

  • Import

    // use import
    import { TosClient } from '@volcengine/tos-sdk';
    
    // use require
    const { TosClient } = require('@volcengine/tos-sdk');
  • Create a client

    const client = new TosClient({
      accessKeyId: 'Your Access Key',
      accessKeySecret: 'Your Secret Key',
      region: 'cn-beijing',
      endpoint: 'endpoint',
    });
  • More example, see test and example folder

Changelog

Detailed changes for each release are documented in the CHANGELOG.md.