RRavishankarinchai-js.hashnode.dev00Linux File System HuntingMay 10 · 31 min read · The Linux file system is a hierarchical, tree-like structure starting at the root directory (/), where all data, devices, and processes are represented as files. It adheres to the Filesystem HierarchyJoin discussion
RRavishankarinchai-js.hashnode.dev00The Node.js Event Loop ExplainedMay 10 · 5 min read · The Node.js event loop is the secret sauce that allows Node.js to perform non-blocking I/O operations despite being single-threaded. It acts like an efficient waiter in a restaurant: instead of standiJoin discussion
RRavishankarinchai-js.hashnode.dev00Blocking vs Non-Blocking Code in Node.jsMay 10 · 2 min read · In Node.js, the difference between blocking and non-blocking code revolves around how the application handles input/output (I/O) operations and whether the execution of further JavaScript is paused. 1Join discussion
RRavishankarinchai-js.hashnode.dev00REST API Design Made Simple with Express.jsMay 10 · 6 min read · Building a REST API with Express.js is a streamlined process that allows applications to communicate using standard HTTP methods. 1. What REST API means A REST API (Representational State Transfer AppJoin discussion
RRavishankarinchai-js.hashnode.dev00Why Node.js is Perfect for Building Fast Web ApplicationsMay 10 · 5 min read · Node.js is considered ideal for building fast web applications because of its unique architecture that prioritizes efficiency and concurrent request handling rather than just raw computational power. Join discussion