1.4.2 • Published 5 years ago

bluebluerice-ts-koa-router v1.4.2

Weekly downloads
5
License
ISC
Repository
github
Last release
5 years ago

ts-koa-router

提供koa的router的装饰器

install

  npm install bluebluerice-ts-koa-router --save

引用

  import decorators from 'bluebluerice-ts-koa-router'

使用(基于koa2)

  import Router from 'koa-router'
  const { Controller, Request } = decorators

  @Controller({ prefix: '/api' })
  export default class MyRouter extends Router {
    @Request({ url: '/myurl', method: 'post' })
    async login(ctx: any, next: any){
      ctx.body = 'hello world'
    }
  }

更新

  import{ Request, Controller, GET, PUT, POST, DELETE } from 'bluebluerice-ts-koa-router'
1.4.2

5 years ago

1.3.2

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.1.1

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.9.1

5 years ago

0.8.2

5 years ago

0.8.1

5 years ago

0.7.2

5 years ago

0.7.1

5 years ago

0.6.1

5 years ago

0.5.3

5 years ago

0.5.2

5 years ago