Paolo InsognaforPlatformatic Blogblog.platformatic.dev·Nov 4, 2024Addressing Overprovisioning & Performance Issues in Node.js via Multiple WorkersScaling Node.js applications efficiently has long been a challenge for teams. Traditionally, Node.js runs on a single thread per service, meaning each instance operates as a single process within its container. This forces teams to overprovision infr...2 likes·1.1K readsAPPlication-ser
Pawan Spawanblog.hashnode.dev·Jul 23, 2024How the Event Loop Works in JavaScript ExplainedJavaScript is single-threaded, it executes one command at a time in a specific order. However, it can handle asynchronous operations thanks to the event loop. The event loop is a mechanism that manages the execution of multiple pieces of code, handli...JavaScript
Shubham Sharmashubhamsharmas.hashnode.dev·Nov 18, 2023Understanding Node.js Worker Threads From Ground UpWelcome to the guide on Node.js worker threads! In this series, we're diving into how worker threads can supercharge your Node.js apps. Today, we'll start with the basics—understanding threads, processes, and how Node.js handles heavy tasks. Let's be...28 readsnode.js worker threads
Ashwin Telmoreashwintelmore.hashnode.dev·Jul 3, 2023Unleashing Multi-threading in Node.js: A Game-Changing Feature! 🚀Introduction: 🌟 Node.js, a powerful JavaScript runtime, has revolutionized back-end development. But its single-threaded nature poses performance limitations. However, excitingly, a groundbreaking feature has emerged, bringing true multi-threading c...10 likesNode.js
Nakul Londhenakul27.hashnode.dev·Jan 7, 2023NodeJS and Multithreading using Worker ThreadsMultithreading in Node.js Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine that allows developers to execute JavaScript code on the server side. One of the key features of Node.js is its non-blocking, event-driven architecture, ...49 readsmultithreading in Node.js