BTBytesflow Techinbytesflowtechnologies.hashnode.dev·4d ago · 3 min readBuilding a Glovo Clone: A Developer's Guide to Multi-Category Delivery Apps If you've ever ordered food, medicine, and a birthday gift all from one app — you've used something like Glovo. Today, we're breaking down what it actually takes to build a Glovo clone from a develope00
BTBytesflow Techinbytesflowtechnologies.hashnode.dev·4d ago · 3 min readBuilding a Glovo Clone: A Developer's Guide to Multi-Category Delivery Apps If you've ever ordered food, medicine, and a birthday gift all from one app — you've used something like Glovo. Today, we're breaking down what it actually takes to build a Glovo clone from a develope00
AAkritiinrisingdevelopers.dev·Jun 6 · 2 min readIntroduction to Node (Part 1)Quick Read on Node.js Node.js is a JavaScript runtime built on Chrome’s V8 JavaScript engine. Node.js is cross-platform and open-source, maintained by the OpenJS Foundation. Cross-platform means it00
SDSylvester Dasinblog.minifyn.com·May 11 · 5 min readMastering Asynchronous JavaScript in Node.js: From Callbacks to Async/AwaitNode.js thrives on its non-blocking, asynchronous nature, a fundamental design choice that allows it to handle thousands of concurrent connections efficiently. Unlike traditional synchronous models wh00
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
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev·May 10 · 5 min readHandling File Uploads in Express with MulterFile uploads are one of the most common features in modern web applications. Whether users are uploading profile pictures, resumes, documents, videos, or product images, the backend needs a reliable w00
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev·May 10 · 6 min readStoring Uploaded Files and Serving Them in ExpressFile uploads are a common feature in modern web applications. Whether users are uploading profile pictures, PDFs, videos, or documents, the backend needs a safe and organized way to store and serve th00
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev·May 10 · 4 min readSessions vs JWT vs CookiesAuthentication is one of the most important parts of modern web applications. Whether you are building a social media platform, an e-commerce store, or a SaaS dashboard, you need a way to identify use00
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev·May 10 · 6 min readJWT Authentication in Node.js Explained SimplyAuthentication is one of the most important parts of modern web applications. Whether you're building a social media app, an e-commerce platform, or a dashboard, you need a way to verify who the user 00
KSKanishka Shashiinnodej.hashnode.dev·May 10 · 10 min readBlocking vs Non-Blocking Code in Node.jsModern web applications are expected to handle multiple users, process requests quickly, and remain responsive even under heavy traffic. One of the core reasons Node.js became so popular is its abilit00