Skip to content

Releases: firecatjs/fire-cat

relaese 2.3.2

01 Jul 05:47
Compare
Choose a tag to compare
  • add global router middleware
  • fixed bugs

release v2.1.0

10 Oct 07:24
f6ac282
Compare
Choose a tag to compare
  • fixed some bugs

relaese 2.0.9 πŸŒ™

18 Sep 03:18
35eaa22
Compare
Choose a tag to compare
  • optimized type import
  • optimize routing

What's Changed

Full Changelog: 2.0.2...2.0.9

relaese 2.0.2 🎲

17 Aug 01:13
Compare
Choose a tag to compare

Documentation Services

Enable document service

fireCatRouter.enableDocument()

Custom document service path

fireCatRouter.enableDocument('/document')

custom document description

fireCatRouter.enableDocument('/document', {
   title: 'Interface Documentation',
   description: 'This is the interface document',
   date: '2022-05-20',
   version: '1.0.0'
})

ApiDescription

ApiDescription(des: string)

Describe the request and render it into the final document

class MyController extends FireCatController {
   @Post('hello')
   @ApiDescription('This is a request')
   hello(ctx: Context) {
     ctx.body = "hello world"
   }
}

relaese 2.0.1 πŸŽƒ

16 Aug 08:15
Compare
Choose a tag to compare

Documentation Services

Enable document service

fireCatRouter.enableDocument()

Custom document service path

fireCatRouter.enableDocument('/document')

relaese 2.0.0 πŸ₯³

28 Jun 01:44
Compare
Choose a tag to compare

Release v2 version

  • Refactoring logic
  • Prepare for subsequent documentation features

relaese 1.0.8 πŸ‘»

08 Apr 02:55
Compare
Choose a tag to compare