close callbacks
-
Single Thread, Event Loop, and Blocking CodeFramework/Node.js 2020. 2. 21. 21:16
1. Overview 1.1 Event Loop The event loop is automatically started by node.js when your program starts. This is responsible for handling event callbacks though. The event loop is responsible for basically running that code when a certain event occurs you could say, it's aware of all these callbacks and basically well, execute said code. It's important to understand that this operation is not han..