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
*/
// 다음과 같이 모든 config 파일을 로드합니다.
/*
{
car: {
name: 'car',
sql: "..."
},
ship: {
name: 'ship'
js: '<root>/ship.js'
},
plane: {
name: 'plane'
},
truck: {
name: 'truck'
}
*/