SKsagar kembleinblog.sagarkemble.dev00REST API Design Made Simple with Express.js2h ago · 6 min read · Your App is Basically a Chai Tapri You walk up to the tapri . You say "bhaiya, ek cutting chai ☕." The bhaiya makes it, hands it over. Done. You did not walk behind the counter and make it yourself.Join discussion
VSVishant Singhinvis-nodejs.hashnode.dev00Setting Up Your First Node.js Application Step-by-Step3h ago · 2 min read · Let's Build a simple Hello worlds Node js server Step-1: Download and Install NodeJs For install node js in Linux execute below given commands one by one... //Download and install nvm: curl -o- httpsJoin discussion
SGShikhar Guptainthecleancommit.hashnode.dev00Setting Up Your First Node.js Application Step-by-Step7h ago · 3 min read · So far in this series, you’ve understood how Node.js works internally. You know about its single-threaded nature, non-blocking behavior, and the event loop. Now it’s time to actually use it. This is wJoin discussion
MOMichael Okoloinfreecodecamp.org00How to Build a Multi-Tenant SaaS Platform with Next.js, Express, and Prisma6h ago · 21 min read · Have you ever wondered how platforms like Webflow, Notion, or Hashnode serve thousands of users from a single codebase — each with their own unique URL? The answer is multi-tenancy: an architecture whJoin discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00Creating Routes and Handling Requests with Express .13h ago · 4 min read · What Express.js is . So before understanding what Express.js is, let’s first look at the problem statement, why we actually needed Express. In Node.js, the problem was that in backend development we Join discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00What is Middleware in Express.13h ago · 7 min read · What middleware is in Express . So when you see the word middleware, you can think of it like a middleman. There are two parties, and between them there is a middleman. Now assume data comes from oneJoin discussion
SGShikhar Guptainthecleancommit.hashnode.dev00Handling File Uploads in Express with Multer12h ago · 3 min read · In real-world applications, users don’t just send text data. They upload files. Profile pictures, documents, PDFs, images — these are all part of modern applications. Handling file uploads is not straJoin discussion
SGShikhar Guptainthecleancommit.hashnode.dev00Sessions vs JWT vs Cookies13h ago · 4 min read · Once your application starts dealing with users, one problem becomes unavoidable. How do you know who is making the request? This is what authentication solves. When a user logs in, the server needs aJoin discussion
VRVISHAL RAYinrayvishal.hashnode.dev00REST API Design with Express.js1d ago · 3 min read · Have you ever wondered what happens when you enter your email and password on a website and click “Login”? Behind the scenes, your browser sends a request to a server, and the server responds with theJoin discussion
SSUPRABHATinblog.suprabhat.site00Creating Routes and Handling Requests with Express1d ago · 6 min read · Across the web, every application you interact with relies on servers receiving requests and sending back responses. But writing raw Node.js servers can feel repetitive, verbose, and difficult to manaJoin discussion