Please enable JavaScript.
Coggle requires JavaScript to display documents.
Node JS - Coggle Diagram
Node JS
event loop
-
-
gives priority to the call stack, finally picks to the message queue
job queue
execute the result of async function ASAP, instead of returning at the end of the call stack
-
-
-
-
-
-
-
-
modules
-
shared modules
importing module in other file means you're referencing to that module, not copying it
-
-
-
-
-
-
-
-
-
-