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.
1 Answer
Really 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
1 Comment
JackDev
For what it's worth, I had to call 'ruby ./script.rb', I guess it depends on how the script is set up...