Sumor Cloud ツール。
詳細なドキュメント
Config Loader は .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'
}
*/