# config
Sumor Cloud ツール。
詳細なドキュメント
Config Loader は .yml、.yaml、.json、および .config.js ファイルをサポートしています。ディレクトリ内のすべてのファイルをロードできます。
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
- truck.config.js
*/
// 以下のようにすべての設定ファイルをロードします
/*
{
car: {
name: 'car',
sql: "..."
},
ship: {
name: 'ship'
js: '<root>/ship.js'
},
plane: {
name: 'plane'
},
truck: {
name: 'truck'
}
*/