Performance implications of using Async Hooks
问题 I'm the author of a Node.js library and I want to use Async Hooks to improve DX. But I'm worried about performance. I've read stories saying that everything is fine, as well as stories where performance was a blocker. In theory, asynchronicity should only happen for IO operations and performance penality should be pretty much ~0. (As IO operations are several orders of magnitude more expensive than running JS code.) But, in practice, does running extra JS on each async call induces a non