0.0.4 • Published 7 years ago

typress v0.0.4

Weekly downloads
18
License
-
Repository
github
Last release
7 years ago

In development.

It's easy and organizer to grow up with typress.

File1.ts:

@Route({
    path: '/',
    method: 'get'
})
export class MyController {

    Route(req: Request, res: Response, Next: NextFunction) {
        res.send('Hello World');
    }

} 

Router.ts

import { MyController } from './File1'

@Router({
    mountPoint: '/api',
    routes: [MyController],
    routers: [/** You can create a deep tree of routers */]
})
export class MyRouter { }
0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago