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

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.
Okay, I get what you mean.