PMParth Munjalinparthmunjal07.hashnode.dev00How Node.js Handles Multiple Requests with a Single Thread2d ago · 5 min read · So before understanding the this magic of NodeJS, we need to understand a simple difference between a thread and a process 1. Thread Vs Process Process :- Think of this as a standalone factory. It haJoin discussion
PMParth Munjalinparthmunjal07.hashnode.dev00Async Code in Node.js: Callbacks and Promises3d ago · 4 min read · Why Async Code Exists in Node.js Node.js operates on a single-threaded event loop. This means it has only one main thread to execute JavaScript code. If Node.js were entirely synchronous, a time-consuJoin discussion
PMParth Munjalinparthmunjal07.hashnode.dev00Blocking vs Non-Blocking Code in Node.js3d ago · 3 min read · What is Blocking Code? Blocking code executes synchronously. This means the code runs line by line, and the processor waits for each operation to finish before moving on to the next one. If an operatiJoin discussion
PMParth Munjalinparthmunjal07.hashnode.dev00Uncovering the Matrix: A Deep Dive into the Linux Filesystem5d ago · 9 min read · If you use Linux long enough, you eventually realize that the command line is just a window. The real operating system is a living, breathing machine constructed entirely out of files and folders. To Join discussion
PMParth Munjalinparthmunjal07.hashnode.dev00Why Node.js is Perfect for Building Fast Web ApplicationsApr 20 · 5 min read · Here is a complete breakdown of why Node.js is uniquely equipped to handle fast, highly concurrent web applications, focusing on its architecture rather than just raw benchmarks. To help visualize theJoin discussion