3h ago · 6 min read · How does Node.js work? This is the most common question that an interviewer asks in a JavaScript interview. The answer lies in the Node.js architecture, which involves mainly V8 engine libuv Node.j
Join discussion
5d ago · 11 min read · The Three Relics of Node.js A Harry Potter–Themed Journey Through V8, libuv, and Bindings Prologue: The Legend of the Three Deathly Hallows In the wizarding world, there exists a legendary tale known
Join discussion
6d ago · 3 min read · Topics that cover V8 Engine Libuv — The Async Powerhouse Node.js Binding "Bridge" 1. V8 Engine What is V8 engine JavaScript runs inside a JavaScript engine. One of the most popular engines is th
Join discussion
6d ago · 6 min read · When we start learning JavaScript, we usually focus on variables, functions, arrays, and objects. But as we move deeper, we start asking questions like: Where do global variables actually live? Why
Join discussion
Feb 16 · 7 min read · Coming from stuff like Java or C#, where you need a bunch of threads to deal with users all at the same time, Node.js setup just seems off. I mean, in those languages, its one thread per request or you get stuck. That is the thing that gets me. Node....
Join discussionFeb 1 · 5 min read · Node.js is famous for its single-threaded, non-blocking I/O model. This design makes it incredibly good at handling thousands of concurrent connections with minimal overhead. But there’s a catch. What happens when your single thread is forced to perf...
Join discussion