JSON RPC 2.0 Notification
Constructor for JSON RPC 2.0 notification objects.
Also see related packages json-rpc-response, json-rpc-request, and json-rpc-error
Installation
npm install json-rpc-notification
Usage
method params;
Notification objects can be constructed with or without using the new
keyword.
Example
var JsonRpcNotification = ; // Notification with params'update' 1 2 3; // Notification without params'foobar';
Test
Run unit tests;
$ npm test