SSshouvik sarkarinsarkarshouvik.hashnode.dev·31m ago · 12 min readJWT Authentication ExplainedHey there brilliant developers. Hope you’re learning and building something new every day. Did you know that HTTP is stateless? Since Express is built on top of HTTP, it is stateless too. But what doe00
KSKanishka Shashiinnodej.hashnode.dev·18h ago · 7 min readUnderstanding Node.js Architecture: A Deep DiveNode.js has become one of the most popular runtimes for building scalable network applications, powering everything from REST APIs to real-time chat apps and streaming services. But what makes it so g00
MJMangesh Jadhavinblogwithmangesh.hashnode.dev·1d ago · 35 min readUnderstanding Objects in JavaScript: The Complete Guide to Working with ObjectsI don't care if you're building a to-do app, a React dashboard, or a Node.js backend that talks to a database. At some point, every single one of those things is going to hand you an object and say "h00
DYDeepanshu Yadavinwebdev18.hashnode.dev·2d ago · 11 min readnull and Missing Look the Same in MongoDB — Until Your Queries Disagree// Clearing the token after a successful email-verification user.emailVerificationToken= undefined; await user.save(); At first glance it looks harmless? That is what I thought at first, when I used00
AKAshaaf Khaninashaaf.hashnode.dev·2d ago · 11 min readWhat is Middleware in Express.js and How It Works: The Complete GuideImagine you are standing in line at an international airport, waiting to board an overseas flight. Before you ever set foot on the plane, you don't just walk straight from the curb to your seat. You g00
SSSwapnadip Sahooinswapnadip-syntexandstory.hashnode.dev·4d ago · 5 min readHandling File Uploads in Express with MulterWhen you submit a standard HTML form with text inputs, the browser packages the data as application/x-www-form-urlencoded or application/json. Express handles these easily using express.json() or expr00
FSfaisal Siddiquiinfaisalsiddiqui.hashnode.dev·4d ago · 20 min readHow Instagram, WhatsApp, Uber & Netflix Would Be Built Today Using Expo RouterA Simple Scenario: Sending a Message in Airplane Mode Imagine you're chatting with your friend while traveling. Suddenly, your flight takes off, and you switch your phone to Airplane Mode, which disab00
KSKanishka Shashiinjavasblog.hashnode.dev·4d ago · 5 min read10 TypeScript Tricks Every Developer Should Know (Explained Simply)TypeScript can feel intimidating at first — all those angle brackets and weird symbols. But once you learn a few tricks, it starts to feel like a superpower instead of a headache. Let's go through som00
SSSwapnadip Sahooinswapnadip-syntexandstory.hashnode.dev·4d ago · 3 min readUnderstanding the this Keyword in JavaScript1. What this Represents At its core, this is a keyword that acts like a dynamic reference to an object. Its value is not fixed when you write the code; instead, it is determined at runtime based on ho00
SSSwapnadip Sahooinswapnadip-syntexandstory.hashnode.dev·4d ago · 4 min readThe Magic of this, call(), apply(), and bind() in JavaScriptHere is a clear, practical guide to understanding this and how call(), apply(), and bind() give you total control over it. 1. What this Means in JavaScript Think of this as answering one simple questi00