-
-
Notifications
You must be signed in to change notification settings - Fork 35k
Closed
Labels
child_processIssues and PRs related to the child_process subsystem.Issues and PRs related to the child_process subsystem.
Description
console.log('spawn');
var spawn = require('child_process').spawn,
child = spawn('C:\\Program Files\\nodejs\\node.exe');
child.stdin.setEncoding('utf-8');
setInterval(function(){
child.stdin.write("console.log('Hey there')\n");
}, 100);
child.stdout.on('data', function(data){
console.log(data);
});
console.log('spawned');It only reproduces
spawn
spawned
but it should also give me "Hey there" messages
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
child_processIssues and PRs related to the child_process subsystem.Issues and PRs related to the child_process subsystem.