AAkritiinrisingdevelopers.dev00Introduction to Node (Part 1)4d ago · 2 min read · 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 itJoin discussion
SDSylvester Dasinblog.minifyn.com00Mastering Asynchronous JavaScript in Node.js: From Callbacks to Async/AwaitMay 11 · 5 min read · Node.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 whJoin discussion
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev00Creating Routes and Handling Requests with ExpressMay 10 · 5 min read · Building 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.Join discussion
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev00Storing Uploaded Files and Serving Them in ExpressMay 10 · 6 min read · File 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 thJoin discussion
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev00Handling File Uploads in Express with MulterMay 10 · 5 min read · File 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 wJoin discussion
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev00Sessions vs JWT vs CookiesMay 10 · 4 min read · Authentication 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 useJoin discussion
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev00JWT Authentication in Node.js Explained SimplyMay 10 · 6 min read · Authentication 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 Join discussion
KSKanishka Shashiinnodej.hashnode.dev00Blocking vs Non-Blocking Code in Node.jsMay 10 · 10 min read · Modern 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 abilitJoin discussion
KSKanishka Shashiinnodej.hashnode.dev00Why Node.js is Perfect for Building Fast Web ApplicationsMay 10 · 9 min read · Modern web applications demand speed, scalability, and real-time performance. Users expect websites and applications to load instantly, process requests quickly, and handle thousands of simultaneous uJoin discussion
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev00What is Middleware in Express and How It WorksMay 10 · 6 min read · When building backend applications with Node.js and Express, one concept you’ll encounter everywhere is middleware. Middleware is one of the most important features of Express because it allows you toJoin discussion