Sumor Cloud ツール。
詳細なドキュメント
Config Loader は yaml と json ファイルをサポートしています。 ディレクトリ内のすべてのファイルをロードできます。
ファイルは指定された形式に自動的に変換されます。
npm i @sumor/config --save
Node.JS バージョン 16.x 以上が必要です。
このパッケージは ES モジュールで書かれているため、package.json
ファイル内の以下のコードを変更してください。
{
"type": "module"
}
import { load } from '@sumor/config'
ディレクトリ内のすべてのファイルをロードします。
import { meta } from '@sumor/config'
const config = await meta(process.cwd(), ['js', 'sql'])
/*
デモディレクトリ構造
- root
- car.json
- car.sql
- ship.js
- plane.yml
*/
// 以下のようにすべての設定ファイルをロードします
/*
{
car: {
name: 'car',
sql: "..."
},
ship: {
name: 'ship'
js: '<root>/ship.js'
},
plane: {
name: 'plane'
}
}
*/
import { find } from '@sumor/config'
import { findReference } from '@sumor/config'
import { load } from '@sumor/config'
const config1 = await load(process.cwd(), 'demo')
// ルートディレクトリ内の demo.yml または demo.json をロードします
const config2 = await load(process.cwd(), 'demo', 'yaml')
// ルートディレクトリ内の demo.yml または demo.json をロードし、yaml 形式のファイルに変換します
import { find } from '@sumor/config'
const config = await find(process.cwd(), 'entity')
// ルートディレクトリ内のすべての *.entity.yml または *.entity.json をロードします
/*
* 例:
* car.entity.yml、bike.entity.json
* {
* "car": {...}
* "bike": {...}
* }
* */
たとえば .vue、.js ファイルなど、同じ名前の設定ファイルを持つファイルから
import { findReference } from '@sumor/config'
const config = await findReference(process.cwd(), ['vue', 'js'])
// ルートディレクトリ内の *.entity.yml または *.entity.json で、*.vue や *.js の名前と同じファイルをすべてロードします
/*
* 例:
* car.entity.yml、bike.entity.json
* car.vue、bike.js
* {
* "car": {...}
* "bike": {...}
* }
* */