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

45 lines
1.1 KiB
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.
*
* *************************************/
2014-09-03 16:25:35 +10:00
ipc.config.id = 'hello';
2014-09-01 03:56:53 +10:00
ipc.config.retry = 1000;
2014-02-22 20:13:31 +11:00
ipc.connectTo(
'world',
function(){
ipc.of.world.on(
'connect',
function(){
ipc.log('## connected to world ##'.rainbow, ipc.config.delay);
ipc.of.world.emit(
'app.message',
{
2014-09-03 16:25:35 +10:00
id : ipc.config.id,
message : 'hello'
}
2014-02-22 20:13:31 +11:00
)
}
);
ipc.of.world.on(
'disconnect',
function(){
ipc.log('disconnected from world'.notice);
}
);
ipc.of.world.on(
'app.message',
2014-02-22 20:13:31 +11:00
function(data){
ipc.log('got a message from world : '.debug, data);
}
);
2015-08-23 16:16:20 +10:00
console.log(ipc.of.world.destroy);
2014-02-22 20:13:31 +11:00
}
2015-08-23 15:46:55 +10:00
);