أداة Sumor Cloud.
مزيد من الوثائق
هذه مكتبة تخزين خفيفة الوزن لـ Node.JS. يمكنه الاتصال بمختلف خدمات التخزين، مثل Aliyun OSS
npm i @sumor/storage --save
يتطلب إصدار Node.JS 18.x أو أعلى
نظرًا لأن هذه الحزمة مكتوبة بتنسيق ES module،
يرجى تغيير الكود التالي في ملف 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)