Skip to content

random-guys/siber

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7678042 · Jun 14, 2021
Jun 13, 2021
Jun 1, 2021
Jun 1, 2021
Jun 23, 2019
Jun 23, 2019
Dec 3, 2019
Dec 3, 2019
Jun 23, 2019
Jun 14, 2021
Jun 24, 2019
Jun 14, 2021

Repository files navigation

siber

Controllers as classes. This lib abstracts away the internals of controllers.

How to install?

yarn add @random-guys/siber

Also, you need yarn add inversify-express-utils

How does it work?

my.controller.ts

export class MyController extends Controller<MyResponseType> {
  @httpGet('/', myMiddleWare)
  async getData(@request() req: Request, @response() res: Response) {
    try {
      // ...do somethings
      this.handleSuccess(req, res, myResponse);
    } catch (err) {
      this.handleError(req, res, err);
    }
  }
}

In your ioc.ts

import { Container } from 'inversify';
import './my.controller.ts';

const container = new Container();
export default container;

Finally, in your app.ts

const server = new InversifyExpressServer(container, null);
.server.setConfig((app: Application) => {
  siber.buildInto(app, logger, {
    cors: false,
    jsend: true,
    tracking: true
  })
})

TODO

  • Tests
  • Refactor filesystem structure
  • Removed dependency on JSend
  • Move integration code to new packages
    • siber-bucket
    • siber-provcs