bluebot
Version:
A bitcoin trading bot for auto trading at various exchanges
27 lines (19 loc) • 564 B
JavaScript
var fork = require('child_process').fork;
module.exports = (mode, config, callback) => {
var child = fork(__dirname + '/child');
// How we should handle client messages depends
// on the mode of the Pipelines that is being ran.
var handle = require('./messageHandlers/' + mode + 'Handler')(callback);
var message = {
what: 'start',
mode: mode,
config: config
}
child.on('message', function(m) {
if(m === 'ready')
return child.send(message);
handle.message(m);
});
child.on('exit', handle.exit);
return child;
}