1.2.4 • Published 2 years ago
@kever/response v1.2.4
@kever/response
a kever property plugin, standard response output format.
Install
npm install @kever/response --save
Start
//index.ts
import { createApp } from '@kever/core'
createApp({
port: 9000,
plugins: [
'@kever/response'
]
})
// controller.ts
import { BaseController, Context, Controller } from '@kever/core'
import { PluginType, UsePlugin } from '@kever/ioc'
import { Get } from '@kever/router'
import { Response } from '@kever/response'
@Controller('/')
export class Controller extends BaseController {
@UsePlugin(PluginType.property, 'response')
private response: Response
@Get('/index')
async index(ctx: Context) {
ctx.body = this.response(ctx, 10000, {
name: 'kever',
message: 'Hello world'
})
}
}
1.2.4
2 years ago
1.2.2
2 years ago
1.1.6
3 years ago
1.1.3
3 years ago
1.1.2
3 years ago
1.1.1
3 years ago
1.1.0
3 years ago
1.0.11
3 years ago
1.0.10
3 years ago
1.0.9
4 years ago
1.0.8
4 years ago
1.0.7
4 years ago
1.0.2
4 years ago
1.0.1
4 years ago
1.0.6
4 years ago
1.0.5
4 years ago
1.0.4
4 years ago
1.0.3
4 years ago
1.0.0
4 years ago