Skip to content

Instantly share code, notes, and snippets.

@airportyh
Created August 18, 2012 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save airportyh/3386599 to your computer and use it in GitHub Desktop.
Save airportyh/3386599 to your computer and use it in GitHub Desktop.

On Windows

B:\testem\node_bug>node -v
v0.8.6

B:\testem\node_bug>node spawn.js

B:\testem\node_bug>

On OSX Lion

$ node -v
v0.8.6
$ node spawn.js
hello
$ 
console.log('hello')
process.exit()
var exec = require('child_process').exec
var spawn = require('child_process').spawn
var p = exec('node script.js')
p.stdout.on('data', function(data){
process.stdout.write(data + '')
})
p.stderr.on('data', function(data){
process.stderr.write(data + '')
})
p.on('exit', function(){
process.exit(0)
})
setInterval(function(){}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment