don't block the event loop
last updated: Oct 20, 2023
https://nodejs.org/en/docs/guides/dont-block-the-event-loop
Nice documentation from node on how the event loop, worker loop, and event system work and how you should write your code to work with them.
Remember, the Event Loop should orchestrate client requests, not fulfill them itself.