node-ipc/example/TCPSocket/basic/hello-client.js

42 lines
956 B
JavaScript
Raw Normal View History

2014-02-22 20:13:31 +11:00
var ipc=require('../../../node-ipc');
/***************************************\
*
* You should start both hello and world
* then you will see them communicating.
*
* *************************************/
2016-01-10 23:18:14 +11:00
ipc.config.id = 'hello';
2014-02-22 20:13:31 +11:00
ipc.config.retry= 1500;
2014-02-27 09:04:09 +11:00
ipc.connectToNet(
2014-02-22 20:13:31 +11:00
'world',
function(){
ipc.of.world.on(
'connect',
function(){
ipc.log('## connected to world ##'.rainbow, ipc.config.delay);
ipc.of.world.emit(
'message',
'hello'
2016-01-10 23:18:14 +11:00
);
2014-02-22 20:13:31 +11:00
}
);
ipc.of.world.on(
'disconnect',
function(){
ipc.log('disconnected from world'.notice);
}
);
ipc.of.world.on(
'message',
function(data){
ipc.log('got a message from world : '.debug, data);
}
);
}
);
2016-01-10 23:57:08 +11:00
console.log(ipc);