أداة Sumor Cloud.
المزيد من الوثائق
داعم تحميل التكوين يدعم ملفات .yml, .yaml, .json, و .config.js. يمكنه تحميل جميع الملفات في دليل معين.
npm i @sumor/config --save
يتطلب إصدار Node.JS 18.x أو أعلى
نظرًا لأن هذه الحزمة مكتوبة بوحدة ES،
يرجى تغيير الشيفرة التالية في ملف package.json
الخاص بك:
{
"type": "module"
}
import { load } from '@sumor/config'
const config = await load(process.cwd(), 'config')
// سيحمل ملفات config.yml, config.yaml, config.json, config.config.js
تحميل جميع الملفات في الدليل
import { meta } from '@sumor/config'
const config = await meta(process.cwd(), ['js', 'sql'])
/*
هيكل الدليل التوضيحي
- root
- car.json
- car.sql
- ship.js
- plane.yml
- truck.config.js
*/
// ستقوم بتحميل جميع ملفات التكوين على النحو التالي
/*
{
car: {
name: 'car',
sql: "..."
},
ship: {
name: 'ship'
js: '<root>/ship.js'
},
plane: {
name: 'plane'
},
truck: {
name: 'truck'
}
*/