34 lines
698 B
JavaScript
34 lines
698 B
JavaScript
|
const ipc=require('../../../node-ipc');
|
||
|
|
||
|
/***************************************\
|
||
|
*
|
||
|
* You should start both hello and world
|
||
|
* then you will see them communicating.
|
||
|
*
|
||
|
* *************************************/
|
||
|
|
||
|
ipc.config.id = 'world';
|
||
|
ipc.config.retry= 1500;
|
||
|
|
||
|
ipc.serve(
|
||
|
function(){
|
||
|
ipc.server.on(
|
||
|
'app.message',
|
||
|
function(data,socket){
|
||
|
ipc.server.emit(
|
||
|
socket,
|
||
|
'app.message',
|
||
|
{
|
||
|
id : ipc.config.id,
|
||
|
message : data.message+' world!'
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
);
|
||
|
|
||
|
|
||
|
|
||
|
ipc.server.start();
|