api-middleware

Sumor Cloud 도구입니다.
더 많은 문서

API 미들웨어는 Node.JS용 미들웨어입니다. 함수를 쉽게 API로 노출하고 매개변수를 유효성 검사할 수 있습니다.

NPM 버전 NPM 다운로드 GitHub CI GitHub 테스트 GitHub 커버리지 GitHub 감사

설치

npm i @sumor/api-middleware --save

전제 조건

Node.JS 버전

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

Node.JS ES 모듈 필요

이 패키지는 ES 모듈로 작성되었으므로 package.json 파일의 다음 코드를 변경해야 합니다.

{
  "type": "module"
}

사용법

기본 사용법

  1. 프로젝트 폴더 apiplus.js 파일 추가
export default async (context, req, res) => {
  const { data } = context
  const { a, b } = data
  return a + b
}
  1. [선택 사항] 프로젝트 폴더 apiplus.json이라는 구성 파일 추가
{
  "name": "plus",
  "parameters": {
    "a": {
      "name": "parameter a",
      "type": "number",
      "length": 3
    },
    "b": {
      "name": "parameter b",
      "type": "number"
    }
  }
}
  1. index.js 파일에 다음 코드 추가
import express from 'express'
import apiMiddleware from '@sumor/api-middleware'

const app = express()

await apiMiddleware(app, process.cwd() + '/api')

app.listen(3000, () => {
  console.log('Server is running on http://localhost:3000')
})
  1. index.js 실행
node index.js
  1. API 테스트
curl -X POST http://localhost:3000/plus -H "Content-Type: application/json" -d '{"a": 1, "b": 2}'

또는 브라우저를 통해 http://localhost:3000/plus?a=1&b=2 열기

apiMiddleware 옵션

import express from 'express'
import apiMiddleware from '@sumor/api-middleware'

const app = express()

await apiMiddleware(app, process.cwd() + '/api', {
  prefix: '/api',
  prepare: async context => {
    // API 이전에 작업 수행
  },
  finalize: async (context, result) => {
    // API 이후 작업 수행
  },
  exception: async (context, error) => {
    // 오류 처리
  }
})
app.listen(3000, () => {
  console.log('Server is running on http://localhost:3000')
})

더 많은 구성 파일 유형

yaml

yaml 파일을 사용하여 구성 파일을 정의할 수 있으며, plus.jsonplus.yml로 바꿔 사용합니다.

유형은 number, string, boolean, array, object만 지원됩니다.

name: plus
parameters:
  a:
    name: parameter a
    type: number
    length: 3
  b:
    name: parameter b
    type: number
config.js

구성 파일에서 js 함수를 지원하려면 config.js 파일을 사용하고, plus.jsonplus.config.js로 바꿔 사용합니다.

export default {
  name: 'plus',
  parameters: {
    a: {
      name: 'parameter a',
      type: 'number',
      length: 3
    },
    b: {
      name: 'parameter b',
      type: 'number',
      rule: [
        {
          code: 'TOO_BIG',
          message: 'b should be less than 100',
          function: function (value) {
            return value < 100
          }
        }
      ]
    }
  }
}

매개변수 규칙

매개변수에 규칙을 적용하기 위한 예제는 아래를 참조할 수 있습니다.

{
  "name": "plus",
  "parameters": {
    "a": {
      "name": "parameter a",
      "type": "number",
      "length": 3,
      "rule": [
        {
          "code": "GREATER_THAN_0",
          "expression": "^[1-9][0-9]*$",
          "message": "must be greater than 0"
        }
      ],
      "i18n": {
        "zh": {
          "GREATER_THAN_0": "必须大于0"
        }
      }
    },
    "b": {
      "name": "parameter b",
      "type": "number"
    }
  }
}

더 많은 사용법은 Validator를 참조하세요.

context

data

요청에 전달된 모든 매개변수가 포함되어 있습니다.

파일 업로드는 아래 객체로 구문 분석됩니다:

exposeApis

노출된 모든 API가 포함되어 있습니다.