Rename ChildProcess exec
and fork
to something which is not entirely confusing to system developers #224
Closed
Description
The ChildProcess module's exec
and fork
methods sound a bit similar to the system calls of that name, but behave entirely differently. I've been bit by this a few times already.
To reduce confusion and make it easier to understand what is going on, these should be renamed to something like similarly functional methods in other environements (for example exec
I believe is very similar to system
, OTOH I'm not sure what I would do with fork
).
Also, it would be great if IO.js will add implementation for fork
and exec
system calls so that developers can take advantage of these powerfull primitives to create their own multi-process mechanisms.
Activity