0.2.4 • Published 9 years ago

microframework-express v0.2.4

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

Express module for Microframework

Adds integration between express.js and microframework.

Usage

  1. Install module:

    npm install microframework-express --save

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

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

Todos

  • cover with tests
  • add more docs
0.2.4

9 years ago

0.2.3

9 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago