api-middleware

Sumor Cloud ツール。
詳しいドキュメント

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

インストール

npm i @sumor/api-middleware --save

前提条件

Node.JS バージョン

Node.JS バージョン 18.x 以上が必要です。

require Node.JS ES module

このパッケージは 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 に置き換えます

タイプは numberstringbooleanarrayobject をサポートしています

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