@nv4re/koa-decorator
v2.0.1
Published
@route decorator for koa-router (fork from https://github.com/gwuhaolin/koa-router-decorator)
Downloads
5
Readme
koa-decorator
@route decorator for koa-router
Use
install by:
npm i @nv4re/koa-decorator
then use in code:
import {HttpMethod, route} from 'koa-decorator';
@route('/monitor')
export default class MonitorCtrl{
@route('/alive', HttpMethod.GET)
async alive(ctx) {
ctx.body = {
data: true,
};
}
}
register to router:
import {load} from 'koa-decorator';
const apiRouter = load(path.resolve(__dirname, 'route'), '.route.js');
app.use(apiRouter.routes()).use(apiRouter.allowedMethods());
Use auth middleware
import {HttpMethod, route} from 'koa-decorator';
function auth(ctx) {
if(!ctx.auth){
ctx.response.status = 401;
}
}
@route('/monitor')
export default class MonitorCtrl {
@route('/alive', HttpMethod.GET,auth)
async alive(ctx) {
ctx.body = {
data: true,
};
}
}
Return data direct
The following code has the same effect as above:
@route('/monitor')
export default class MonitorCtrl {
@route('/alive', HttpMethod.GET,auth)
async alive() {
return {
data: true,
};
}
}