microframework-t-controllers
v0.0.1
Published
T-Controllers integration with microframework
Downloads
4
Readme
T-Controllers module for Microframework
Adds integration between [t-controllers](http://(https://github.com/PLEEROCK/t-controllers) and microframework.
Usage
Install module:
npm install --save microframework-t-controllers microframework-express
This module depend on microframework-express, so you need to install it too.
Simply register module in the microframework when you are bootstrapping it.
import {MicroFrameworkBootstrapper} from "microframework/MicroFrameworkBootstrapper"; import {ExpressModule} from "microframework-express/ExpressModule"; import {TControllersModule} from "microframework-t-controllers/TControllersModule"; new MicroFrameworkBootstrapper({ baseDirectory: __dirname }) .registerModules([ new ExpressModule(), new TControllersModule() ]) .bootstrap() .then(result => console.log('Module is running. Open localhost:3000')) .catch(error => console.error('Error: ', error));
Now you can use [t-controllers](http://(https://github.com/PLEEROCK/t-controllers) module in your microframework.
Todos
- cover with tests
- add more docs