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. 在项目文件夹api中添加一个名为plus.js的文件
export default async (context, req, res) => {
  const { data } = context
  const { a, b } = data
  return a + b
}
  1. [可选] 在项目文件夹api中添加一个名为plus.json的配置文件
{
  "name": "plus",
  "parameters": {
    "a": {
      "name": "参数a",
      "type": "number",
      "length": 3
    },
    "b": {
      "name": "参数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('服务正在运行,访问地址为 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('服务正在运行,访问地址为 http://localhost:3000')
})

更多配置文件类型

yaml

您可以使用yaml文件来定义配置文件,用plus.yml替换plus.json

类型仅支持 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.config.js替换plus.json

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

上下文

data

它包含请求中传递的所有参数

文件上传将被解析为以下对象:

exposeApis

它包含所有暴露的API