This Node module implements a WebSocket JSON-RPC server with object synchronization capabilities based on the JSON-Pointer and JSON-Patch standards.
It is called a Push Model because it is intended to be used as part of a server-side MVC Model layer or MVVM ViewModel layer that requires the ability to push changes to clients.
The Model/ViewModel layer can handle JSON-RPC requests and return data directly to the requester, or it may choose to place data in a model object that is published to interested clients. Harmony Proxy is used to detect subsequent changes to the data, which are published incrementally as JSON Patches.
const pm = require("push-model");
const server = require("http").createServer();
const model = {
//properties that client can subscribe to
prop1: ...,
prop2: ...,
//RPC methods
method1: function(...args) {
...
return result; //or promise
},
method2: ...
};
pm.mount(server, "/path", model, acceptOrigins);
This creates an HTTP server and mounts model
on the specified route. Clients can send RPC requests to this route over either HTTP or WebSocket, which invoke the corresponding methods on the model. Return values are automatically sent back as JSON-RPC responses.
The PUB/SUB mechanism is only available to WebSocket clients.
Clients call SUB/UNSUB to start/stop observing changes to the model object. The pointer
parameter, a JSON Pointer, indicates which part of the model to observe.
SUB(pointer)
UNSUB(pointer)
Server calls PUB to notify clients of changes to the model. The patches
parameter holds an array of JSON Patches describing a series of changes that were made to the model.
SUB(patches)
A return value of type ErrorResponse will be translated into a JSON-RPC error message.
return new pm.ErrorResponse(code, message, data);
An MVC chat server that uses object synchronization to push chat messages to clients.
pm.mount(server, "/chat", {
//data
chatLog: [],
//actions
sendChat: function(name, message) {
this.chatLog.push(name + ": " + message);
}
});
Open a command prompt in the push-model directory and run:
npm install
node examples/chat/model.js
That will start the chat model on localhost:8080. Then open the file examples/chat/chat.html in two browser windows and start chatting!
Open a command prompt in the push-model directory and run:
npm install
node examples/sharedtodolist/model.js
Then open the file examples/sharedtodolist/todo.html in two or more browser windows. If you use Chrome, you must run a local web server because Chrome does not allow AJAX over file:// URL.
npm install
node examples/messenger/model.js
Then open the file examples/messenger/messenger.html in two or more browser windows. Enter a user ID and name to login to the messenger app.
View the wiki for other features supported by the Push Model.