Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to execute a windows command through cmd.exe in node.js using child_process.spawn. It executes correctly, but only displays in default text color. How do I preserver the color. Is it possible?

var spawn = require('child_process').spawn,
    cmd    = spawn('cmd', ['/s', '/c', 'C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MSBuild c:\\test.sln']);

cmd.stdout.on('data', function(data){
    process.stdout.write(data);
});

cmd.stderr.on('data', function(data){
    process.stderr.write(data);
});

cmd.on('exit', function(code){
    console.log(code);
});

When executing via node, the color is not preserved. Executing via node.js

When executing via cmd.exe directly, the color is present. (This is the expected behavior). How do I get this behvior when executing via node. When executing through cmd.exe

share|improve this question
+1 for the simple, executable example, and the nice screenshots explaining the now and later. Nice! – TooTallNate Dec 30 '11 at 17:42

2 Answers

up vote 5 down vote accepted

Try this instead:

var spawn = require('child_process').spawn
  , command = 'C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MSBuild c:\\test.sln'
  , cmd    = spawn('cmd', ['/s', '/c', command], { customFds: [0,1,2] });

cmd.on('exit', function(code){
    console.log(code);
});

Note that I'm not positive whether or not customFds works on Windows. I know that it's old deprecated functionality doesn't work, but when only passing [0,1,2] as the fd's, I think there is a special case for that.

I've been doing something similar here, but I've only ran that command on Unix machines. So let me know if that works on Windows.

share|improve this answer
thanks. seems to work on windows. – prabir Dec 30 '11 at 3:59
You should mark it as "answered" then ;) – TooTallNate Dec 30 '11 at 17:40
Since customFds is deprecated, is there a way to do this without customFds on Unix machines as well? – JP Richardson Feb 3 '12 at 20:30
@JPRichardson Unfortunately there is no other way to do it without the deprecated customFds. I don't believe it is going anywhere anytime soon, especially for this use-case. – TooTallNate Feb 7 '12 at 6:18
As a side note @prabir, I'm assuming you are attempting to compile a native addon for node. You should definitely checkout node-gyp and use that, it will make life easier :) – TooTallNate Feb 7 '12 at 6:20
show 2 more comments

There are new 'stdio' option for child_process.spawn(). Try following:

spawn("path to executable", ["params"], {stdio: "inherit"});

"Inherit" means [0, 1, 2] or [process.stdin, process.stdout, process.stderr].

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.