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

34 lines
698 B
JavaScript
Raw Normal View History

2021-07-03 07:35:02 +10:00
import ipc from '../../../node-ipc.js';
2014-02-22 20:13:31 +11:00
/***************************************\
*
2014-02-22 20:13:31 +11:00
* You should start both hello and world
* then you will see them communicating.
*
2014-02-22 20:13:31 +11:00
* *************************************/
2016-01-10 23:18:14 +11:00
ipc.config.id = 'world';
2014-02-22 20:13:31 +11:00
ipc.config.retry= 1500;
ipc.serve(
function(){
ipc.server.on(
'app.message',
2014-02-22 20:13:31 +11:00
function(data,socket){
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();