mschema-rpc

Minimalistic Remote Procedural Call library using mschema validation for remote method's input and output.

MIT 4 个版本
安装
npm install mschema-rpc
yarn add mschema-rpc
pnpm add mschema-rpc
bun add mschema-rpc
README

mschema-rpc

Minimalistic Remote Procedural Call library using mschema validation for remote method's input and output.

Features

  • Provides validation to functions incoming arguments and outgoing results
  • Validation based on mschema

API

rpc.invoke(inputData, method, methodSchema, callback)

inputData

the input data to be sent to method

method

the method to be executed remotely

methodSchema

the schema to be used to validate the input and output of method

schema format

{
  "input": {
    "key": "val"
  },
  "output": {
    "key": "val"
  }
}

see: http://github.com/mschema/mschema for full schema format documentation

callback

the callback to be executed after method has been invoked

Example


var rpc = require('mschema-rpc');

var fireSchema = {
  "description": "fires missle",
  "input": {
    "name": "string",
      "power": {
        "type": "string",
        "enum": ["high", "medium", "low"]
      },
      "warheads": {
        "type": "number",
        "min": 1,
        "max": 8
      }
    },
  "output": {
    "result": "string"
  }
};

function fireFn (input, callback) {
  callback(null, 'weapon fired');
}

var data = {
  "name": "small missle",
  "power": "low",
  "warheads": 8
};

rpc.invoke(data, fireFn, fireSchema, function(errors, result) {
  console.log('errors', errors);
  console.log('result', result);
});
版本列表
0.7.0 2016-12-14
0.6.0 2015-12-04
0.5.1 2013-12-10
0.5.0 2013-11-29