@sendit-th/koa-decorator

@route decorator for koa-router (fork from https://github.com/gwuhaolin/koa-router-decorator)

Usage no npm install needed!

<script type="module">
  import senditThKoaDecorator from 'https://cdn.skypack.dev/@sendit-th/koa-decorator';
</script>

README

koa-decorator

@route decorator for koa-router

Use

install by:

npm i 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'));
// const apiRouter = load(path.resolve(__dirname, 'route', '.ts')); // only require .ts files as route
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.ALL, 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,
    };
  }
}