NKNAWAZISH KHANinnawazish.hashnode.dev·May 19 · 7 min readBlocking vs Non-Blocking Code in Node.jsThere's a moment every Node.js beginner hits where something just clicks. For a lot of people, it's when they finally understand blocking vs non-blocking code. Because once you get this — really get i00
NKNAWAZISH KHANinnawazish.hashnode.dev·May 19 · 6 min readThe Node.js Event Loop Explained (Without Making Your Brain Hurt)If you've been learning Node.js for a while, you've probably heard the phrase "Node.js is single-threaded but non-blocking." And you might have nodded along pretending you totally get it. Don't worry 00
NKNAWAZISH KHANinnawazish.hashnode.dev·May 12 · 7 min readBlocking vs Non-Blocking Code in Node.jsWhen you're just starting out with Node.js, you'll hear the words "blocking" and "non-blocking" thrown around constantly. At first it sounds like jargon. But once you understand what's actually happen00
NKNAWAZISH KHANinnawazish.hashnode.dev·May 12 · 8 min readThe Node.js Event Loop ExplainedIf you've ever written JavaScript and wondered how setTimeout or fs.readFile manages to "wait" without freezing your entire program — you've already bumped into the event loop. It sounds intimidating 00
NKNAWAZISH KHANinnawazish.hashnode.dev·Apr 23 · 9 min readUnderstanding the this Keyword in JavaScriptIf there is one JavaScript concept that confuses almost every beginner at some point, it is this. At first, it looks simple. It is just a keyword, so you naturally expect it to always point to one cle00