NSNamra Sutharinnamrabuilds.hashnode.dev00Why Facebook’s 'Mistake' Became Your Entire Career4d ago · 10 min read · You learned useState. You wrote a few components. Maybe you even built a todo app and felt like, “Yes, React samajh aa gaya.” But wait. Why does React even exist? Why did Facebook create it? And why dJoin discussion
RKRenuka Khirwadkarinunlockaijargons.hashnode.dev00Understanding Why Node.js is Fast4d ago · 4 min read · 1. What Makes Node.js Fast Core Idea Node.js is fast mainly because it: Uses non-blocking I/O Runs on a single-threaded event loop Avoids waiting on slow operations (like file/database/network callJoin discussion
MKMohit Kumarinimohit1o1.hashnode.dev00Handling File Uploads in Express with Multer5d ago · 6 min read · You have a form. User wants to upload a profile picture. Regular JSON won't work. Files need special handling. Express can't read files directly. You need middleware. Let me show you how with Multer. Join discussion
MKMohit Kumarinimohit1o1.hashnode.dev00String Polyfills and Common Interview Methods5d ago · 6 min read · "Understanding a method is one thing. Implementing it is another." You know "hello".toUpperCase() gives "HELLO". You know trim() removes spaces. But do you know how? Interviews ask: "Write your own vJoin discussion
KKKoushik Karmakarinwhat-is-middleware-in-express-by-koushik.hashnode.dev00What is Middleware in Express and How It Works5d ago · 5 min read · Every request that hits your Express server passes through a pipeline before it reaches your route handler. Middleware is what lives inside that pipeline. Think of it as a series of checkpoints, each Join discussion
VBVishal Bishtinbishtvoperators.hashnode.dev00JavaScript Arrays 1015d ago · 2 min read · In JavaScript, arrays are one of the most important data structures. Arrays allow us to store multiple values in a single variable. Instead of creating many variables like this: We can store everythJoin discussion
AAAgam arorainagamx.hashnode.dev01Setting Up Your First Node.js Application Step-by-Step5d ago · 5 min read · Getting started with backend development can feel confusing at first, but setting up your first application using Node.js is actually straightforward. In this guide, you’ll learn how to install Node.jMRamkrishna commented
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev00Linux File System Hunting5d ago · 7 min read · When most beginners learn Linux, they start with commands like ls, cd, pwd, and mkdir. But Linux becomes truly interesting when you stop treating it like just an operating system and start treating itJoin discussion
RRRitik Raghuwanshiinritikraghuwanshi.hashnode.dev00Spread Vs Rest Operator5d ago · 4 min read · As we are going deep diving into JavaScript day to day. So we also need to know about the two operators that are introduced in JavaScript ES6 and are commonly used: - Spread Rest However, the spreJoin discussion
JSJoy Swarnakarinjoy-swarnakar.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScript5d ago · 6 min read · One of the most confusing topics for JavaScript beginners is: 🧠 this At first, it may look mysterious. But once you understand one simple idea: 👉 "this depends on who is calling the function" everytJoin discussion