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

jsonrpc-serializer

v0.2.1

Published

A simple library to serialize/deserialize JSON-RPC 2.0 messages

Downloads

252

Readme

Build Status

JSON-RPC serializer

This is a simple library to perform serialization/deserialization of JSON-RPC 2.0 messages. It has full support for Date and Error objects, comforms to the JSON-RPC 2.0 specifications, and allows plugins (in the near future) to extend the library.

Why?

JSON-RPC 2.0 is transport agnostic, but unfortunately this is not the case for most JSON-RPC modules in the NPM. Thus, when I needed a library to use JSON-RPC 2.0 over hook.io and 0MQ, I ran into a brick wall, and ended up writing this library.

It's small. It's simple. And I hope this will be useful to you as well.

How to install?

npm install jsonrpc-serializer

How to use?

var jrs = require('jsonrpc-serializer');

var request = jrs.request('request-id', 'request-method');

// ---> "{\"jsonrpc\":\"2.0\",\"id\":\"request-id\",\"method:\":\"request-method\"}"

var ok = "{\"jsonrpc\":\"2.0\",\"id\":\"request-id\",\"result\":\"success!!\"}";

var response = jrs.deserialize(ok);

// ---> 
//  {
//      type    : 'success',
//      payload : {
//          id     : 'request-id',
//          result : 'success!!'
//      }
//  }

API REFERENCE

The library works on serializing objects to JSON-RPC 2.0 (henceforth known as JR2) messages, and deserializing them back. There are 4 different kinds of objects that can be serialized: request, notification, success and error (JSON-RPC 2.0 Specs).


jrs.request( id, method, params )

| name | type | required | description | |------|------|----------|-------------| | id | string or number | YES | the ID to attach to this JSON-RPC message | | method | string | YES | the name of the method to invoke on the receiver | | params | string, object or array | NO | parameters to pass to the receiver | | return | string | - | returns a serialized string of a proper JSON-RPC 2.0 request object |

You can use this method to create a JSON-RPC 2.0 request payload to send over the transport of your choice. All you need is to generate an ID for this request, provide a method name to invoke on the receiver side, and parameters to pass over as well.

Here's an example of request() in action:

var jrs = require('jsonrpc-serializer');
var uuid = require('node-uuid'); // npm install node-uuid to get this

var payload = jrs.request(
    uuid.v4(),   // generates a V4 UUID string
    'saveUser',  // the method to call
    {
        name  : 'Ruben Tan',
        email : '[email protected]',
        race  : 'unicorn'
    }
);

console.log(payload);
// This will output the following JSON object as a STRING
// {
//     "jsonrpc" : "2.0",
//     "id" : "0ea77279-b59a-47da-bfa9-21f5895fd28e",
//     "method" : "saveUser",
//     "params" : {
//         "name" : "Ruben Tan",
//         "email" : "[email protected]",
//         "race" : "unicorn"
//     }
// }

jrs.notification( method, params )

| name | type | required | description | |------|------|----------|-------------| | method | string | YES | the name of the method to invoke on the receiver | | params | string, object or array | NO | parameters to pass to the receiver | | return | string | - | returns a serialized string of a proper JSON-RPC 2.0 notification object |

Serializes a notification message. A notification message is the same as a request message, with the only difference being that it does not contain an id field, and thus does not expect a reply from the server. This also exempts notifications from receiving errors if any.

var jrs = require('jsonrpc-serializer');

var payload = jrs.request(
    'newMessage',  // the method to call
    {
        subject : 'Test message',
        message : 'This is a test message'
    }
);

console.log(payload);
// This will output the following JSON object as a STRING
// {
//     "jsonrpc" : "2.0",
//     "method" : "newMessage",
//     "params" : {
//         "subject" : "Test message",
//         "message" : "This is a test message"
//     }
// }

jrs.success( id, result )

| name | type | required | description | |------|------|----------|-------------| | id | string | YES | the ID of the request to be matched on the server side | | result | string, object or array | YES | the result of the JSON-RPC call | | return | string | - | returns a serialized string of a proper JSON-RPC 2.0 success response |

Serializes a success message. This is usually used on the server side to send results back to the client after receiving the RPC method call. It consists of an id and a result field.

Example pending

jrs.error( id, result )

| name | type | required | description | |------|------|----------|-------------| | id | string | YES | the ID of the request to be matched on the server side | | error | object | YES | an error object containing the error to be passed to the server side | | return | string | - | returns a serialized string of a proper JSON-RPC 2.0 error response |

Serializes an error message. This is the same as the success message, except instead of result we have error. The error field MUST be an object, and it MUST conform to the error object spec mentioned in the JSON-RPC 2.0 Specs.

See the specs for the exact format for error objects, but for the convenience of developers using this module, I've abstracted the defined ones into a few classes:

| Namespace | Code | Description | |-----------|------|-------------| | jrs.err.JsonRpcError( msg ) | -32603 | This is the base class for all the other custom RPC error objects. Please note that when integrating this module, make sure to derive from this base class if you want to create more custom errors. This will ensure that all serialization of error objects are consistent. | | jrs.err.ParseError() | -32700 | This is thrown when the deserializer fails to recognize the message as a proper JSON entity. | | jrs.err.InvalidRequestError() | -32600 | This is thrown when the deserializer successfully parses the message into JSON, but realizes it is not a proper JSON-RPC 2.0 message. | jrs.err.MethodNotFoundError() | -32601 | This is what you use when the required method is not found. | | jrs.err.InvalidParamsError() | -32602 | This is what you use when the parameters provided is not compatible with the methods being invoked |


jrs.deserialize( msg )

| name | type | required | description | |------|------|----------|-------------| | msg | string | YES | a serialized JSON | | return | object | - | returns a deserailized javascript object |

This method takes a message in msg, parses it, and tries to figure out which of the four JSON-RPC 2.0 objects it is: request, notification, success or error. If it cannot figure out, or the message is faulty, it will instead return an appropriate instance (or child instance) of JsonRpcError.

The object returned if successful looks like this:

{
    type    : 'request',
    payload : {
        id     : 'id',
        method : 'method'
    }
}

Where type is one of the four types (request, notification, success or error) and payload is the actual JSON-RPC message in JSON format itself, with the property jsonrpc="2.0" removed.

ERRORS REFERENCE

jrs.err.JsonRpcError( msg )

The message in msg is appended to the internal data structure as message:

var err = new jrs.err.JsonRpcError('This is an error');
var str = err.serialize();

//  str = {
//      code    : -32603,
//      message : 'This is an error',
//      name    : 'JsonRpcError',
//      data    : ['This is an error']
//  };

jrs.err.ParseError()

See below

jrs.err.InvalidRequestError()

See below

jrs.err.MethodNotFoundError()

See below

jrs.err.InvalidParamsError()

Since all four of these errors are the same, I'll go through them together. They are essentially the same format as JsonRpcError, with the right serialize() method, but the difference is that the message property is fixed. Therefore, any params passed in the constructor will be saved into an array inside the data property, instead of changing the message property itself. Here's an example:

var err = new jrs.err.ParseError('This is an error');
var str = err.serialize();

//  str = {
//      code    : -32700,
//      message : 'Unable to parse payload as a JSON.',
//      name    : 'ParseError',
//      data    : ['This is an error']
//  };

MIT License

Copyright (c) 2013 Ruben LZ Tan

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.