أداة 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 = 'مرحبًا بالعالم'
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)