![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
cluster-proxy
Advanced tools
Abstracts method calling on an object in the master process. The workers have a proxy object that abstracts all the message passing. The main limitation is that arguments and values must be JSON serializable.
This module allows a clusterized node.js application to have a shared object between the master and worker processes.
Internally it uses message passing and JSON serialization of arguments and return values, so the abstraction is not perfect (objects like file references, sockets, bound functions, etc. cannot be passed around).
You can read the full generated jsdoc here: http://bazaarvoice.github.io/node-cluster-proxy/out/index.html
var cluster = require('cluster');
var clusterproxy = require('cluster-proxy');
if (cluster.isMaster) {
var delegate = {
a : 42,
f : function(a, b) {
return a + b;
},
g : function(a, cb) {
cb(null, a*2, a*a);
}
};
var master = new clusterproxy.Master({delegate: delegate});
master.connectWorker(cluster.fork());
} else { //worker process
var proxy = new clusterproxy.Worker();
proxy.get('a', console.log);
proxy.invoke('f', 1, 2, console.log);
proxy.invokeAsync('g',//method name
21,//argument for the invoked method
function(proxyErr, delegateErr, double, square) {//callback: note that we have two error arguments, one for the cluster proxy itself (timeouts, etc.) and another for the delegate errors.
if(!proxyErr && !delegateErr) {
console.log('double:', double, 'square:', square);
} else {
console.log('error:', proxyErr || delegateErr);
}
});
}
There is a monolithic test file that can be run as a normal nodejs script, or
directly with npm test
FAQs
Abstracts method calling on an object in the master process. The workers have a proxy object that abstracts all the message passing. The main limitation is that arguments and values must be JSON serializable.
We found that cluster-proxy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.