Sumor Cloud ツール。
詳しいドキュメント
これは Node.JS 向けの軽量なストレージライブラリです。 Aliyun OSS などのさまざまなストレージサービスに接続できます。
npm i @sumor/storage --save
Node.JS バージョン 18.x 以降が必要です
このパッケージは 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"
}
コンテンツの投稿はテキスト、バッファー、ストリームをサポート
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)
import { Storage } from '@sumor/storage'
const storage = new Storage(config)
const filename = 'demo.txt'
const result = await storage.get(filename)
import { Storage } from '@sumor/storage'
const storage = new Storage(config)
const filename = 'demo.txt'
const result = await storage.delete(filename)