AJAyush Jaininayushjjainn.hashnode.devยท6d ago ยท 7 min readBlocking vs Non-Blocking Code in Node.jsThis winter, right after our end sem exams, me and my friends drove up to Ladakh, and I was behind the wheel for most of it. For the entire drive, the toll plazas were a breeze. Almost every one had F00
KSKanishka Shashiinnodej.hashnode.devยทMay 10 ยท 10 min readBlocking vs Non-Blocking Code in Node.jsModern web applications are expected to handle multiple users, process requests quickly, and remain responsive even under heavy traffic. One of the core reasons Node.js became so popular is its abilit00
ACARKPARAVA CHAKRABORTYinunderstand-and-build-in-web.hashnode.devยทMay 10 ยท 3 min readBlocking vs. Non-Blocking: The Engine of Node.js PerformanceIn traditional programming, code executes line-by-line. If one line takes a long time, everything behind it stops. In Node.js, we have two ways to handle these "slow" tasks: Blocking and Non-Blocking.00
GSGagan Sharmainnodejs-web-applications.hashnode.devยทMay 10 ยท 6 min readWhy Node.js Is FastNode.js became extremely popular because of its ability to handle thousands of concurrent requests efficiently. Many modern applications use Node.js for: APIs Chat applications Streaming platforms 00
SSSoumyaditya Sinhainsoumyaditya-blog.hashnode.devยทMay 8 ยท 4 min readBlocking vs Non-Blocking Code in Node.jsWhen people first learn Node.js, they usually hear one sentence over and over: โNode.js is non-blocking.โ Cool. But what does that actually mean? Because this one thing changes how your server behav00
VPVed Pandeyinvedpandeydev.hashnode.devยทApr 29 ยท 4 min readBlocking vs Non-Blocking Code in Node.jsWhat Are We Gonna Study? Hey there folks, hope you are doing great in your life, and enjoying every bit of it. Today we'll talk about some topics which usually cause some silly mistakes in your code i10
AKAlok Kumar Singhinblocking-vs-non-blocking8373.hashnode.devยทApr 14 ยท 10 min readBlocking vs Non-Blocking Code in Node.js1. What blocking code means ๐ Introduction In Node.js, understanding blocking vs non-blocking code is crucial because it directly affects application performance and scalability. Since Node.js runs o00
AKAnurag Kumarinanuragblogs.hashnode.devยทApr 13 ยท 21 min readBlocking vs Non-Blocking Code in Node.js1. What blocking code means Blocking code refers to operations that stop the execution of the next line of code until the current operation finishes. During this time, the thread (the worker doing the00
Jjunningomdoricake.hashnode.devยทJan 21 ยท 12 min readAsyncioAsync I/O is a single-threaded, single-process technique that uses cooperative multitasking. Coroutines are not inherently concurrent. Async I/O is a model of concurrent programming, but itโs not parallelism. Itโs more aligned with threading than wit...00
JKJunghun Kimindevnote-vienna453.hashnode.devยทNov 6, 2025 ยท 4 min readNode.js์ ๋ ผ๋ธ๋กํน I/O ์์ ์ ๋ณต โ ์ด๋ฒคํธ ๋ฃจํ๋ถํฐ ๋น๋๊ธฐ ๋์๊น์งNode.js๋ฅผ ๊ณต๋ถํ๋ค ๋ณด๋ฉด ๋น ์ง์ง ์๋ ๊ฐ๋ ์ด ์์ต๋๋ค.๋ฐ๋ก ๋ ผ๋ธ๋กํน I/O(Non-blocking I/O)์ ์ด๋ฒคํธ ๋ฃจํ(Event Loop)์ ๋๋ค. Node.js๋ ์ฑ๊ธ ์ค๋ ๋์์๋ ๋ถ๊ตฌํ๊ณ ์์ฒ ๊ฐ์ ์์ฒญ์ ๋์์ ์ฒ๋ฆฌํ ์ ์์ต๋๋ค.๊ทธ ๋น๋ฐ์ด ๋ฐ๋ก โ๋ ผ๋ธ๋กํน I/Oโ์ ์์ต๋๋ค. ๐งฉ 1. Node.js ๋ฐํ์์ I/O ๋ชจ๋ธ Node.js๋ ์๋ฐ์คํฌ๋ฆฝํธ ์์ง(V8) ์์ libuv๋ผ๋ C ๋ ๋ฒจ์ ๋ฐํ์ ๊ณ์ธต์ ์น์ ๊ตฌ์กฐ์ ๋๋ค. โโ...00