RPRohit Patilinr8hitpatil.hashnode.dev00Nest.js for beginners1d ago · 7 min read · What is NestJS ? Nest is framework to build efficient, scalable Node.js server side applications. We can simply use Typescript and concepts like OOPS, Functional Programming are very basic things you Join discussion
MKMohit Kumarinimohit1o1.hashnode.dev00Middleware in Express.js: The Request Pipeline Explained1d ago · 3 min read · What is Middleware? There’s a simple way to understand middleware: “Jaana hai toh milke jaana” Middleware is a checkpoint between request and response. A request doesn’t directly hit your route handJoin discussion
RHrajashree hungundinpromises-with-raj.hashnode.dev00REST API Design Made Simple with Express.js1d ago · 4 min read · In modern web development, applications rarely work in isolation. They constantly communicate with servers to fetch or send data. This is where REST APIs come in. In this blog, we’ll break down REST AJoin discussion
SPSahil Prasharindevwithsahil.hashnode.dev00Sessions vs JWT vs Cookies: Understanding Authentication Approaches1d ago · 6 min read · Authentication was one of those topics that felt confusing mostly because people used three words almost interchangeably. Sessions. Cookies. JWT. And for a while… I honestly thought they were basicallJoin discussion
SPSahil Prasharindevwithsahil.hashnode.dev00REST API Design Made Simple with Express.js1d ago · 5 min read · I remember the first time I heard the term REST API. It sounded way more complicated than it turned out to be. REST. Resources. Endpoints. HTTP verbs. Status codes. It felt like too many words at onceJoin discussion
SPSahil Prasharindevwithsahil.hashnode.dev00Handling File Uploads in Express with Multer1d ago · 6 min read · The first time I tried handling file uploads in Express… I thought it would work like normal form data. Send request. Read req.body. Done. Simple. But then I tried uploading a file… and nothing made sJoin discussion
SPSahil Prasharindevwithsahil.hashnode.dev00Storing Uploaded Files and Serving Them in Express1d ago · 6 min read · The first time I uploaded a file in Express and it actually worked… I felt pretty good. File reached the server. Great. Done. Or so I thought. Then the next question hit me. Okay… where did the file aJoin discussion
SPSahil Prasharindevwithsahil.hashnode.dev00URL Parameters vs Query Strings in Express.js1d ago · 5 min read · I used to mix these up constantly. URL parameters. Query strings. People would say: Use params here. Use query there. And I’d be thinking… Aren’t both just values coming through the URL? Why do we eveJoin discussion
APAnshuman Praharajinnewsletter.anshumancdx.xyz00Yapper — Stop Repeating Backend Setup, Start Building Features2d ago · 6 min read · Every backend engineer has a ritual. A new project lands on your plate, and before you write a single line of business logic, you spend the next hour — sometimes two — doing the same mechanical work yJoin discussion
RHrajashree hungundinpromises-with-raj.hashnode.dev00Storing Uploaded Files and Serving Them in Express.js2d ago · 4 min read · When building modern web applications, handling file uploads (images, PDFs, videos, etc.) is a common requirement. But uploading is just one part — we also need to store files properly, serve them effJoin discussion