我想从另一个流星应用程序启动一个捆绑的流星应用程序,当我永远监视我将从我将开始的应用程序成为错误'不是Meteor应用程序目录时。
var runCell = new (forever.Monitor)('main.js', {
'max':3,
'silent':true,
'sourceDir':'/path/to/main.js',
'env':{
'ROOT_URL':'http://127.0.0.1',
'MONGO_URL':'mongodb://xyz.com',
'PORT':4000
}
});
runCell.on('exit', function(code){
console.log(code);
});
runCell.on('stdout', function(data) {
console.log('stdout: ' + data);
});
runCell.on('stderr', function(data) {
console.log('stdout: ' + data);
});
runCell.start();
我该如何解决这个问题?
感谢您的帮助