Home

Awesome

inversify-express-example

Travis Dependencies img img

The official express + inversify + inversify-express-utils example

Use examples

First of all run npm install

You can start a example by using ts-node

$ npm install -g ts-node
$ ts-node <example>/bootstrap

This will start up the server and you can use the example

If you want to run the unit tests, simply use npm test <example>/**/*.spec.ts

To run all tests simply run npm run test:all

Currently available examples

NameDescription
BasicA really basic example. Nothing too fancy.
MongoDBSimilar to the basic example. This time with MongoDB and some middleware. For detailed information see the readme in the folder.
BindingDecoratorsSimilar to the basic example. This time with inversify-binding-decorators.
MiddlewareInjectionA small example that shows how to inject middleware into controllers.
PostgresAndTypeORMA small example that shows how to integrate inversify-express-utils with TypeORM.