Controllers.ts integration with microframework
npm install microframework-controllers.tsnpm install --save microframework-controllers.ts microframework-express
javascript
import {MicroFrameworkBootstrapper} from "microframework/MicroFrameworkBootstrapper";
import {ExpressModule} from "microframework-express/ExpressModule";
import {ControllersTsModule} from "microframework-controllers.ts/ControllersTsModule";
new MicroFrameworkBootstrapper({ baseDirectory: __dirname })
.registerModules([
new ExpressModule(),
new ControllersTsModule()
])
.bootstrap()
.then(result => console.log('Module is running. Open localhost:3000'))
.catch(error => console.error('Error: ', error));
`
3. 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.