0.0.4 • Published 7 years ago

microframework-typeorm v0.0.4

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

TypeORM module for Microframework

Adds integration between typeorm and microframework.

Usage

  1. Install module:

    npm install microframework-typeorm --save

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

        import {MicroFrameworkBootstrapper} from "microframework/MicroFrameworkBootstrapper";
        import {TypeOrmModule} from "microframework-typeorm/TypeOrmModule";
        
        new MicroFrameworkBootstrapper({ baseDirectory: __dirname })
            .registerModules([
                new TypeOrmModule()
            ])
            .bootstrap()
            .then(result => console.log('Module is running. TypeODM is available now.'))
            .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 typeorm module in your microframework.

Todos

  • cover with tests
  • add more docs
0.0.4

7 years ago

0.0.3

7 years ago

0.0.2-alpha.9

8 years ago

0.0.2-alpha.8

8 years ago

0.0.2-alpha.7

8 years ago

0.0.2-alpha.6

8 years ago

0.0.2-alpha.5

8 years ago

0.0.2-alpha.4

8 years ago

0.0.2-alpha.3

8 years ago

0.0.2-alpha.2

8 years ago

0.0.2-alpha.1

8 years ago

0.0.2-alpha

8 years ago

0.0.1

8 years ago