I'm looking for a command like Ruby's kernel 'exec' but for Node.js. Any thoughts?
|
feedback
|
|
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. | |||||||
feedback
|
|
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:
| |||
|
feedback
|
child_process.execis not satisfactory. – Matt Ball Dec 2 '11 at 20:30