config

Sumor Cloud 도구. 더 많은 문서

Config Loader는 .yml, .yaml, .json 및 .config.js 파일을 지원합니다. 디렉토리의 모든 파일을 로드할 수 있습니다.

CI Test Coverage Audit

설치

npm i @sumor/config --save

전제 조건

Node.JS 버전

Node.JS 버전 18.x 이상이 필요합니다.

Node.JS ES 모듈 요구사항

이 패키지는 ES 모듈로 작성되었기 때문에, package.json 파일에서 다음 코드를 변경해주셔야 합니다:

{
  "type": "module"
}

사용법

진입 메소드

load

import { load } from '@sumor/config'

const config = await load(process.cwd(), 'config')
// config.yml, config.yaml, config.json, config.config.js 파일을 로드합니다.

meta

디렉토리에 있는 모든 파일을 로드합니다.

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