Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 658 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 658 Bytes

@knowledgr/koa-jsonrpc

Build status: CircleCI

Spec compliant JSON RPC Server middleware for Koa

const Koa = require('koa')
const {JsonRpc} = require('@knowledgr/koa-jsonrpc')

const rpc = new JsonRpc()
rpc.register('my_method', async (foo, bar) => {
    return foo + bar
})

const app = new Koa()
app.use(rpc.middleware)
app.listen(8080)
$ curl -X POST -d '{"id":1,"jsonrpc":"2.0","method":"my_method","params":["honkey","tonk"]}' localhost:8080
{"jsonrpc":"2.0","id":1,"result":"honkeytonk"}