console.io-client is package required to connect your node.js applications with console.io
You will find that integrating console.io to your node.js apps is ridiculously simple.
ncc.connect({
endpoint: "http://localhost:8080",
name: "marketplace"
}, function(err, result){
});
npm install console.io-client
Add this once in every node.js process:
var ncc = require('console.io-client');
ncc.connect(options, callback);
endpoint
: url to the dashboard.name
: unique name of this particular node.js process.disableExec
: disable the remote execution of code.