This may seem like a very basic question. I need my small Meteor app to integrate with an external service. Specifically ZeroRPC - http://zerorpc.dotcloud.com/
Here's some example ZeroRPC client code.
Are there any potential issues with this and Is there a preferred way to do this?
var zerorpc = require("zerorpc");
var client = new zerorpc.Client();
client.connect("tcp://127.0.0.1:4242");
client.invoke("hello", "RPC", function(error, res, more) {
console.log(res);
});