moleculer-json-schema-validator

1.0.1 • Public • Published

Moleculer JSON Schema Validator

Validate moleculer action params via JSON Schema.

Current Version (v1.0.0)

Install

npm install --save moleculer-json-schema-validator

Usage

// moleculer.config.js
 
const Validator = require('moleculer-json-schema-validator')
 
module.exports = {
  ...
  validator: new Validator()
}
// service.js

module.exports = {
  actions: {
    hello: {
      params: {
        properties: {
          "name": {type: "string"}
        },
        required: ["name"]
      },
      handler (ctx) {
        const {name} = ctx.params
        return `Hello ${name}`
      }
    }
  }
}

License

MIT

/moleculer-json-schema-validator/

    Package Sidebar

    Install

    npm i moleculer-json-schema-validator

    Weekly Downloads

    2

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • zhaoyao91