0.3.3 • Published 7 years ago

microframework-routing-controllers v0.3.3

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
7 years ago

routing-controllers module for Microframework

Adds integration between routing-controllers and microframework.

Usage

  1. Install module:

    npm install --save microframework-routing-controllers microframework-express

    This module depend on microframework-express, so you need to install it too.

  2. Simply register module in the microframework when you are bootstrapping it.

        import {MicroFrameworkBootstrapper} from "microframework/MicroFrameworkBootstrapper";
        import {ExpressModule} from "microframework-express/ExpressModule";
        import {RoutingControllersModule} from "microframework-routing-controllers/RoutingControllersModule";
        
        new MicroFrameworkBootstrapper({ baseDirectory: __dirname })
            .registerModules([
                new ExpressModule(),
                new RoutingControllersModule()
            ])
            .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.

  4. Now you can use routing-controllers module in your microframework.

Todos

  • cover with tests
  • add more docs
0.3.3

7 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.3.0-alpha3

8 years ago

0.3.0-alpha2

8 years ago

0.3.0-alpha1

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago