@ringjs/express
TypeScript icon, indicating that this package has built-in type declarations

0.0.1-alpha.13 • Public • Published

ringjs express adapter

Usage

@Controller()
class TestController {
    @Get()
    public index(): string {
        return 'hello world';
    }
}
@Module({
    controllers: [TestController],
    providers: []
})
class TestModule {

}

async function bootstrap() {
    const app = await createExpressApplication(TestModule);
    app.start(8000);
}

/@ringjs/express/

    Package Sidebar

    Install

    npm i @ringjs/express

    Weekly Downloads

    2

    Version

    0.0.1-alpha.13

    License

    MIT

    Unpacked Size

    6.54 kB

    Total Files

    11

    Last publish

    Collaborators

    • codedaraw
    • wangqs