SKSahil Khuranaininnostaxengineering.hashnode.dev·Jul 9 · 8 min read5 Benefits of Using Node JS for API DevelopmentNetflix, Uber, PayPal, LinkedIn, GitHub. Five companies that collectively handle billions of API calls every day. All of them run Node.js on the backend. At some point, you stop treating that as a coi00
KSKanishka Shashiinnodej.hashnode.dev·Jul 2 · 8 min readSecuring Apps: Password Hashing, RBAC, OAuth, and OpenID ConnectSecurity is one of those things that's easy to bolt on badly and hard to retrofit well. Most applications end up needing to answer four separate questions: How do we store credentials safely? How do w00
BTBytesflow Techinbytesflowtechnologies.hashnode.dev·Jun 26 · 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·Jun 26 · 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