node-ipc/example/TLSSocket/basic-local-only/world-server.js

43 lines
880 B
JavaScript
Raw Normal View History

2021-07-03 07:35:02 +10:00
import ipc from '../../../node-ipc.js';
/***************************************\
*
* You should start both hello and world
* then you will see them communicating.
*
* *************************************/
2016-01-10 23:18:14 +11:00
ipc.config.id = 'world';
ipc.config.retry= 1500;
//node-ipc will default to its local certs
ipc.config.tls={
rejectUnauthorized:false
2016-01-10 23:18:14 +11:00
};
ipc.serveNet(
function(){
ipc.server.on(
'message',
function(data,socket){
ipc.log('got a message : ', data);
ipc.server.emit(
socket,
'message',
data+' world!'
);
}
);
ipc.server.on(
'socket.disconnected',
function(data,socket){
2016-01-10 23:18:14 +11:00
console.log(arguments);
}
);
}
);
2015-12-10 21:29:15 +11:00
ipc.server.start();