Y
Hacker News
new
|
ask
|
show
|
jobs
by
moralestapia
731 days ago
How's that different from:
await Promise.all([ child_process.exec(...), child_process.exec(...), child_process.exec(...), ]);
Syntax might be off but you get the idea ...
1 comments
christophilus
731 days ago
It's probably not different. It works the way I want it to / expect it to in Bun, where with Node's process.* functions, I always run into a footgun before I get it working properly.
link
moralestapia
731 days ago
Okay, I get what you mean.
link