TypeORM module for Microframework
Adds integration between typeorm and microframework.
Usage
-
Install module:
npm install microframework-typeorm --save
-
Simply register module in the microframework when you are bootstrapping it.
;;baseDirectory: __dirname; -
ES6 features are used, so you may want to install es6-shim too:
npm install es6-shim --save
you may need to
require("es6-shim");
in your app. -
Now you can use typeorm module in your microframework.
Todos
- cover with tests
- add more docs