0.2.0 • Published 8 years ago

microframework-validator.ts v0.2.0

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

Validator.ts module for Microframework

Adds integration between validator.ts and microframework.

Usage

  1. Install module:

    npm install --save microframework-validator.ts

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

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

Todos

  • cover with tests
  • add more docs
0.2.0

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.2

9 years ago