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'
}
*/