@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)