I'm looking for a command like Ruby's kernel 'exec' but for Node.js. Any thoughts?

link|improve this question

Could you describe what you want to do with it? – thejh Dec 2 '11 at 20:27
Yes, I want to replace the running process with the child process in and identical manner to Ruby's 'exec'. – JP Richardson Dec 2 '11 at 20:30
For those of us familiar with Node but not Ruby, perhaps you could explain why Node's child_process.exec is not satisfactory. – Matt Ball Dec 2 '11 at 20:30
@MДΓΓБДLL I want to replace the running process with the child process. Write a quick ruby script to test this behavior, put only the following line: exec('node'). You'll notice that the ruby interpreter is now the node interpreter. – JP Richardson Dec 2 '11 at 20:33
feedback

2 Answers

If you only care about posix platforms you could craft a small module in C and drop down to exec.

For some pointers on how you might do that, first realize that node is a framework that runs on top of v8, and then take a look at this or perhaps this.

link|improve this answer
Awesome. Any tutorials on how I can do this? – JP Richardson Dec 2 '11 at 20:43
@JPRichardson You're looking at getting dirty with v8 extensions. I've updated the answer with a few links to get started. – phs Dec 2 '11 at 20:49
Thanks, I gave you an upvote as I didn't think of this as an option previously. – JP Richardson Dec 2 '11 at 20:52
feedback
up vote 0 down vote accepted

I took the advice of @phs and built a native Node.js module. A bit of details can be found here. Github source here.

You can use it like so:

npm install kexec

var kexec = require('kexec');
kexec("your_process with args here");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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