Skip to content

Releases: joesonw/ts-router

0.1.3

02 Mar 09:21
Compare
Choose a tag to compare

Fix sever bugs from v0.1.2

0.1.2 Release

01 Mar 12:39
Compare
Choose a tag to compare
  • Bug fixes
  • New decorators
    • @appcontext: retrieve app context
    • @HttpContext: retrieve http context(koa)
    • @RouteResponse: get response object from route(used in @after and @before mostly).

Fixes and one new feature

29 Feb 06:58
Compare
Choose a tag to compare

Fix path parameter matching issues.

Now support multi path on one route. e.g,

@Path('/user/_:id')
@Path('/user/_:id/info')
async function handler():Promise<Response> {

}

0.1.0

29 Feb 06:56
Compare
Choose a tag to compare

Initial release