1.1.4 • Published 5 years ago

lagiacrus v1.1.4

Weekly downloads
1
License
BSD-3-Clause
Repository
github
Last release
5 years ago

lagiacrus

npm version

Koa wrapper using decorators

Installation

npm install lagiacrus

Usage

Example

hello.controller.ts

@Controller({
    path: '/hello'
})
export class HelloController {

    @Get('/')
    displayWorld(): string {
        return 'world';
    }
}

main.ts

async function main(): Promise<http.Server> {
    const server = new Server();
    server.mount(HelloController);
    return await server.start(3000);
}
main().then(() => console.log('Listening...')).catch(console.error);
1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago