@sumor/storage

storage

Sumor Cloud ツール。
詳しいドキュメント

これは Node.JS 向けの軽量なストレージライブラリです。 Aliyun OSS などのさまざまなストレージサービスに接続できます。

CI Test Coverage Audit

インストール

npm i @sumor/storage --save

前提条件

Node.JS バージョン

Node.JS バージョン 18.x 以降が必要です

Node.JS ES モジュールを要求

このパッケージは ES モジュールで書かれているため、
package.json ファイルの次のコードを変更してください:

{
  "type": "module"
}

使用法

インポート

import { Storage } from '@sumor/storage'

const storage = new Storage(config)

設定形式

aliyun OSS の例

{
  "type": "aliyunOSS",
  "accessKeyId": "xxxx",
  "accessKeySecret": "xxx",
  "region": "oss-us-west-1",
  "bucket": "sumor-cloud"
}

Put

コンテンツの投稿はテキスト、バッファー、ストリームをサポート

import { Storage } from '@sumor/storage'

const storage = new Storage(config)

const filename = 'demo.txt'
const content = 'Hello World'

const result = await storage.put(filename, content)

Get

import { Storage } from '@sumor/storage'

const storage = new Storage(config)

const filename = 'demo.txt'

const result = await storage.get(filename)

Delete

import { Storage } from '@sumor/storage'

const storage = new Storage(config)

const filename = 'demo.txt'

const result = await storage.delete(filename)