push-model
v1.0.0
Published
A JSON-RPC server with object synchronization based on JSON-Patch
Downloads
7
Maintainers
Readme
What's This?
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.
How To Use
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.
Special Methods
The PUB/SUB mechanism is only available to WebSocket clients.
SUB/UNSUB
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)
PUB
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)
Special Return Values
ErrorResponse
A return value of type ErrorResponse will be translated into a JSON-RPC error message.
return new pm.ErrorResponse(code, message, data);
A Example Model
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);
}
});
Examples
Running the Chat Example
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!
Running the Shared TodoList Example
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.
Running the Messenger Example
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.
Other Features
View the wiki for other features supported by the Push Model.