VPVijoy Paulinblog.vijoypaul.com·1d ago · 10 min readHow I Reduced API Response Time by 40% Using Redis Caching in Node.js A few months back, I started getting Slack messages that every backend engineer dreads: "hey, is the app slow for anyone else?" Nothing was down. No errors in the logs. Just... sluggish. Pages that us10
RSRajaram Sinrajaram0203.hashnode.dev·2d ago · 8 min read🛠️ Building Your First REST API — Hands-On with Express.js⏱️ 10–12 min read · 🎯 Beginner · 📚 Part 6 of 20 👉 Missed Part 5? REST API Fundamentals — Resources, Endpoints & CRUD 🤔 What Are We Building Today? In Part 5, we designed a REST API on paper. Toda00
PKPrajit Kumar Singhinprajit-dev.hashnode.dev·5d ago · 5 min readThe Ultimate Guide to Secure Password Resets in Express.js (with Nodemailer)We’ve all been there: staring at a login screen, realizing the password we were so sure we remembered is completely wrong. As developers, building a seamless and secure "Forgot Password" flow is a rit00
IiDevoinblog.nehonix.com·Jun 10 · 7 min readWhy Express Applications Become Difficult to Secure at ScaleExpress has earned its place as one of the most influential web frameworks in the Node.js ecosystem. Its simplicity, flexibility, and minimal learning curve have enabled countless startups and enterpr00
MMohsininlearnbybuilding.hashnode.dev·Jun 3 · 16 min readBuilding the Catalog Service — MongoDB, Mongoose, and Your First Running Server Series: Building an Event Booking System with Microservices Part: 03 — Catalog Service Setup, Schemas & the First Health Route Blog by: Mohsin Khan Where We Left Off In Part 2 we set up Docker, spun00
MMohsininlearnbybuilding.hashnode.dev·May 28 · 15 min readSetup, Structure & the Basics of BackendFrom Zero to Running: Folder Structure, Docker, and How Data Actually Flows Series: Building an Event Booking System with Microservices Part: 02 — Setup, Structure & the Basics of Backend Blog by: Mo00
Ggibsosingibsos.hashnode.dev·May 20 · 3 min readBuilding a Screenshot Discovery Platform: 69 Days with Express + PostgreSQLEvery developer has a screenshot problem. Mine starts the same way yours does: cmd+shift+4, drag, release. Screenshot saved to Desktop. Then another. Then 200 more. Now you have a folder called "Scree00
KTKushagra Trivediinkushagrablogs.hashnode.dev·May 11 · 4 min readWhat is Middleware in Express and How It WorksEvery request to your Express server follows a pipeline. The request comes in, something happens, a response goes out. Middleware is what happens in the middle. What Middleware Is A middleware functio00
MKMohit Kumarinimohit1o1.hashnode.dev·May 10 · 6 min readHandling File Uploads in Express with MulterYou 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. 00
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev·May 10 · 5 min readCreating Routes and Handling Requests with ExpressBuilding web servers with Node.js is powerful, but working directly with the built-in HTTP module can become repetitive and difficult to manage as applications grow. This is where Express.js comes in.00