What is the asynchronous mechanism of node based on?
The asynchronous mechanism of node is based on "events". All I/O, network communication, and database queries are executed in a non-blocking manner, and the returned results are processed by the event loop. Node will only process one event at th
2022-07-14