0.1.0 • Published 8 years ago

microframework-controllers.ts v0.1.0

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
8 years ago

Controllers.ts module for Microframework

Adds integration between controllers.ts and microframework.

Usage

  1. Install module:

    npm install --save microframework-controllers.ts 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 {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.

  4. Now you can use controllers.ts module in your microframework.

Todos

  • cover with tests
  • add more docs
0.1.0

8 years ago

0.0.16

8 years ago

0.0.14

8 years ago

0.0.13

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.4

8 years ago

0.0.3

9 years ago

0.0.2

9 years ago