node-ipc/example/unixWindowsSocket/basic/world-server.js

35 lines
796 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.
*
* *************************************/
ipc.config.id = 'world';
ipc.config.retry= 1500;
ipc.serve(
function(){
ipc.server.on(
'app.message',
2014-02-22 20:13:31 +11:00
function(data,socket){
2014-03-04 07:02:56 +11:00
//ipc.log('got a message from'.debug, (data.id).variable, (data.message).data);
ipc.server.emit(
socket,
'app.message',
{
id : ipc.config.id,
message : data.message+' world!'
}
2014-02-22 20:13:31 +11:00
);
}
);
}
);
2015-12-10 21:29:15 +11:00
2014-02-22 20:13:31 +11:00
ipc.server.start();