archivo example.js
Código PHP:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');
//setTimeout(function(){throw Error('foo');},15000);
archivo example2.js:
Código PHP:
var child_process = require('child_process');
var fs = require("fs");
var sys = require("util");
var MyProcess = child_process.spawn(process.ARGV[0], ['example.js']);
sys.puts('iniciamos example.js');
function restart(){
MyProcess.kill();
MyProcess = child_process.spawn(process.ARGV[0], ['example.js']);
sys.puts('reiniciamos example.js');
MyProcess.on('exit',function(code){sys.puts('se terminó la conexion. Code:'+code);restart();});
}
MyProcess.on('exit',function(code){sys.puts('se terminó la conexion. Code:'+code);restart();});
Entonces, mi duda sería justamente qué tan seguro es esto y si conocen y/o recomiendan daemon.node