1.0.0-rc.4 • Published 1 month ago

@http-svc/middleware v1.0.0-rc.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 month ago

Http Service 基础中间件

使用方式

派生自定义组件

import { HttpSvcMiddleware } from "@http-svc/middleware"

async function customHanlder(ctx, next) {
    ...
    return await next()
}

class HttpSvcCustomMiddleware extends HttpSvcMiddleware {
    name = 'CUSTOM_NAME'
    constructor() {
        super(customHanlder)
    }
}
// 全局注册(参考 http-svc的init文档)
const http = new HttpService([
    new HttpSvcCustomMiddleware(customHanlder)
])
1.0.0-rc.4

1 month ago

1.0.0-rc.3

4 months ago

1.0.0-rc.2

4 months ago

1.0.0-rc.1

4 months ago