Is there a npm that can install and or use a ruby file as is and execute inside of node.js? I'm curious because I want want to run two different ruby scripts at the same time.
Is there a npm that can install and or use a ruby file as is and execute inside of node.js? I'm curious because I want want to run two different ruby scripts at the same time.
Share Improve this question asked Apr 14, 2015 at 10:47 marriedjane875marriedjane875 6732 gold badges10 silver badges24 bronze badges1 Answer
Reset to default 9Really simple by using child_process#exec
var exec = require('child_process').exec
exec('./script.rb', function (error, stdout, stderr) {
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
console.log('error: ' + error);
});
Docs here: child_process.exec