Sumor Cloud 도구입니다.
더 많은 문서
API Middleware는 Node.JS용 미들웨어입니다. API에 함수를 쉽게 노출하고 매개변수를 유효성 검사할 수 있습니다.
npm i @sumor/api-middleware --save
Node.JS 버전 18.x 이상 필요
이 패키지는 ES 모듈로 작성되었으므로 package.json
파일에서 다음 코드를 변경해주십시오:
{
"type": "module"
}
api
에 plus.js
파일 생성export default async (context, req, res) => {
const { data } = context
const { a, b } = data
return a + b
}
api
에 plus.json
파일 추가{
"name": "plus",
"parameters": {
"a": {
"name": "parameter a",
"type": "number",
"length": 3
},
"b": {
"name": "parameter b",
"type": "number"
}
}
}
index.js
파일에 다음 코드 추가import express from 'express'
import apiMiddleware from '@sumor/api-middleware'
const app = express()
apiMiddleware(app, process.cwd() + '/api')
app.listen(3000, () => {
console.log('서버가 http://localhost:3000 에서 실행 중입니다.')
})
node index.js
설정 파일을 정의하는 데 yaml 파일을 사용할 수 있습니다. plus.json
대신 plus.yml
을 사용하십시오.
name: plus
parameters:
a:
name: parameter a
type: number
length: 3
b:
name: parameter b
type: number
설정 파일에서 js 함수를 지원하기 위해 config.js
파일을 사용할 수 있습니다. plus.json
대신 plus.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를 참조하십시오.
요청에 전달된 모든 매개변수를 포함합니다.
파일 업로드는 다음 객체로 구문 분석됩니다:
name
: 업로드된 파일 이름size
: 업로드된 파일 크기(바이트)mime
: 업로드된 파일 MIME 유형(예: image/png)encoding
: 업로드된 파일 인코딩(예: 7bit)path
: 업로드된 파일 경로노출된 모든 API를 포함합니다.