@makeomatic/json-rpc-engine
TypeScript icon, indicating that this package has built-in type declarations

5.1.2 • Public • Published

RpcEngine

a tool for processing JSON RPC

usage

const RpcEngine = require('json-rpc-engine')

let engine = new RpcEngine()

Build a stack of json rpc processors by pushing in RpcEngine middleware.

engine.push(function(req, res, next, end){
  res.result = 42
  end()
})

JSON RPC are handled asynchronously, stepping down the stack until complete.

let request = { id: 1, jsonrpc: '2.0', method: 'hello' }

engine.handle(request, function(err, res){
  // do something with res.result
})

RpcEngine middleware has direct access to the request and response objects. It can let processing continue down the stack with next() or complete the request with end().

engine.push(function(req, res, next, end){
  if (req.skipCache) return next()
  res.result = getResultFromCache(req)
  end()
})

By passing a 'return handler' to the next function, you can get a peek at the result before it returns.

engine.push(function(req, res, next, end){
  next(function(cb){
    insertIntoCache(res, cb)
  })
})

RpcEngines can be nested by converting them to middleware asMiddleware(engine)

const asMiddleware = require('json-rpc-engine/lib/asMiddleware')

let engine = new RpcEngine()
let subengine = new RpcEngine()
engine.push(asMiddleware(subengine))

gotchas

Handle errors via end(err), NOT next(err).

/* INCORRECT */
engine.push(function(req, res, next, end){
  next(new Error())
})

/* CORRECT */
engine.push(function(req, res, next, end){
  end(new Error())
})

Dependencies (3)

Dev Dependencies (1)

Package Sidebar

Install

npm i @makeomatic/json-rpc-engine

Weekly Downloads

2

Version

5.1.2

License

ISC

Unpacked Size

837 kB

Total Files

16

Last publish

Collaborators

  • avvs
  • freele