#27 dropped execFile in favor of using spawn directly, so we've lost some features.
One is whatever these two lines do:
- https://github.com/nodejs/node/blob/31600735f40e02935b936802ff42d66d49e9769b/lib/child_process.js#L8
- https://github.com/nodejs/node/blob/31600735f40e02935b936802ff42d66d49e9769b/lib/child_process.js#L204
Can we reliably just do process.binding('uv')? Or is that asking for problems. I know it means importing some native lib, but not much beyond that.
Maybe we look back all the way to Node 0.12 and make sure it was still imported and used the same back then?
#27 dropped execFile in favor of using spawn directly, so we've lost some features.
One is whatever these two lines do:
Can we reliably just do
process.binding('uv')? Or is that asking for problems. I know it means importing some native lib, but not much beyond that.Maybe we look back all the way to Node
0.12and make sure it was still imported and used the same back then?