config

Sumor Cloud 도구입니다.
더 많은 문서
Config Loader는 yaml 및 json 파일을 지원합니다. 디렉토리 내의 모든 파일을 로드할 수 있으며 지정된 형식으로 자동 변환합니다.

CI Test Coverage Audit

설치

npm i @sumor/config --save

전제 조건

Node.JS 버전

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

Node.JS ES 모듈 필요

이 패키지는 ES 모듈로 작성되어 있으므로 package.json 파일에서 다음과 같이 코드를 변경해주세요:

{
  "type": "module"
}

사용 방법

진입 메서드

load

import { load } from '@sumor/config'

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

// 아래처럼 모든 구성 파일을 로드합니다.
/*
{
  car: {
    name: 'car',
    sql: "..."
  },
  ship: {
    name: 'ship'
    js: '<root>/ship.js'
  },
  plane: {
    name: 'plane'
  },
  truck: {
    name: 'truck'
  }
*/

이전 메서드

find

import { find } from '@sumor/config'

findReference

import { findReference } from '@sumor/config'

구성 파일 로드

import { load } from '@sumor/config'

const config1 = await load(process.cwd(), 'demo')
// 루트 디렉토리의 demo.yml 또는 demo.json을 로드합니다.

const config2 = await load(process.cwd(), 'demo', 'yaml')
// 루트 디렉토리의 demo.yml 또는 demo.json을 로드하고 yaml 형식 파일로 변환합니다.

구성 파일 찾기

import { find } from '@sumor/config'

const config = await find(process.cwd(), 'entity')
// 루트 디렉토리에 있는 모든 *.entity.yml 또는 *.entity.json 파일을 로드합니다.
/*
예:
car.entity.yml, bike.entity.json
{
    "car": {...}
    "bike": {...}
}
*/

다른 파일에서 구성 파일 찾기

예를 들어 .vue, .js 파일과 같이 같은 이름의 구성 파일을 가지고 있는 경우

import { findReference } from '@sumor/config'

const config = await findReference(process.cwd(), ['vue', 'js'])
// 루트 디렉토리에 있는 *.entity.yml 또는 *.entity.json 파일을 모두 로드하며 해당 파일이름과 같은 *.vue 또는 *.js 파일을 찾습니다.
/*
예:
car.entity.yml, bike.entity.json
car.vue, bike.js
{
    "car": {...}
    "bike": {...}
}
*/