api-middleware

Sumor Cloud ツール。
より詳細なドキュメント

API Middleware は Node.JS 用のミドルウェアです。
関数を簡単にAPIに公開でき、パラメータを検証できます。

CI Test Coverage Audit

インストール

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 に置き換えます。

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 が含まれます。