npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

express-json-rpc-router

v1.4.0

Published

Json-rpc middleware router for express

Downloads

338

Readme

JSON-RPC node.js implementation

JSON-RPC official spec.

Extremely fast and simple Node.js JSON-RPCv2 router middleware. Handle incoming request and apply to controller functions. Validation available.

Note As Router require body-parser which must be used before router.

Installation

$ npm install express express-json-rpc-router

or

$ yarn add express express-json-rpc-router

Examples

Simple

const express = require('express')
const jsonRouter = require('express-json-rpc-router')
const app = express()

const controller = {
    testMethod({ username }) {
        console.log('username: ', username)
        return ['example data 1', 'example data 2']
    }
}

app.use(express.json())
app.use(jsonRouter({ methods: controller }))
app.listen(3000, () => console.log('Example app listening on port 3000'))

and

curl -X POST \
  http://localhost:3000 \
  -H 'Content-Type: application/json' \
  -d '{
    "jsonrpc": "2.0",
    "method": "testMethod",
    "params": {
        "username": "valeron"
    },
    "id": 1
 }'

will return:

{
  "jsonrpc": "2.0",
  "result": [
    "example data 1",
    "example data 2"
  ],
  "id": 1
}

With Validation, after hooks and onError callback

const controller = {
    // You have access to raw express req/res object as raw.res and raw.req 
    testMethod({ username }, raw) {
        console.log('username: ', username)
        return ['example data 1', 'example data 2']
    }
}

const beforeController = {
    // You have access to raw express req/res object as raw.res and raw.req
    testMethod(params, _, raw) {
        if (Math.random() >= 0.5) { // Random error
            const error = new Error('Something going wrong')
            error.data = { hello: 'world' } // its optional
            throw error
        }
    }
}

const afterController = {
    testMethod: [
      // You have access to result and to raw express req/res object as raw.res and raw.req.
      (params, result, raw) => console.log('testMethod executed 1!'), () => console.log('testMethod executed 2!')
    ]
}

app.use(bodyParser.json())
app.use(jsonRouter({
    methods: controller,
    beforeMethods: beforeController,
    afterMethods: afterController,
    onError(err) {
        console.log(err) // send report
    }
}))
app.listen(3000, () => console.log('Example app listening on port 3000'))

and

curl -X POST \
  http://localhost:3000 \
  -H 'Content-Type: application/json' \
  -d '{
    "jsonrpc": "2.0",
    "method": "testMethod",
    "params": {
        "username": "valeron"
    },
    "id": 1
 }'

will return:

{
  "jsonrpc": "2.0",
  "error": {
    "code": -32603,
    "message": "Something going wrong",
    "data": { "hello": "world" }
  },
  "id": 1
}

Changelog:

- v1.2.0
* Added raw { req, res } native express object to controller and hooks as last argument.
* Passed next arguments: `params, null, raw` to beforeController actions and `params, result, raw` to afterController
* Passed additional second argument `params, raw` to controller actions
- v1.3.0
* Added optional err.data payload to comply with JSON RPC specification: "5.1 Error object".

Options

The express-json-rpc-router function takes an optional options object that may contain any of the following keys:

methods type: Object<function(params, raw)>

You can pass the object of your methods that will be called when a match is made via JSON-RPC method field.

beforeMethods type: Object<function(params, _, raw)|Array<function(params, params, _, raw)>>

You can provide function or array of functions, which will be called before main method with same name are called. This is the best place for validation. beforeMethods names should be the same as methods names. Request params will be passed as first argument.

afterMethods type: Object<function(params, execResult, raw)|Array<function(params, execResult, raw)>>

You can provide function or array of functions, which will be called after main method with same name are called. This is the best place to write logs. afterMethods names should be the same as methods names. Method execution result will be passed as second argument. Request params will be passed as first argument.

onError type: function(err, params)

callback(err, params) {} Optionally you can pass onError callback which will be called when json-rpc middleware error occurred.

License

MIT