RKRajesh Kumarinnodejs-dev.hashnode.dev路May 8 路 7 min readBlocking vs Non-Blocking Code in Node.jsIn our previous articles, we learned that Node.js operates on a Single-Threaded Architecture. This means it only has one main "hand" to execute JavaScript code. Because Node.js only has one thread, th00
SISheikh Ilyas Quadriinnode-js-block-nonblock-99.hashnode.dev路Apr 12 路 3 min readBlocking vs Non-Blocking Code in Node.js馃殌 Introduction One of the biggest reasons Node.js is fast is because of how it handles code execution. 馃憠 The key concept is: Blocking vs Non-Blocking Code Understanding this can completely change ho00