SShayintoddlerstech.hashnode.dev·May 28 · 4 min readAsync Code in Node.Jsif you not already know by now what async code means , then you should probably read previous blogs . for them who wants revise - async code runs parallelly with rest of the code ( its is just a short00
SPSumit Patelinblogsumitkumar14.hashnode.dev·May 23 · 21 min readThe Multiverse of Promises A Deep Dive into JavaScript’s Asynchronous PowerNick Fury walks into the control room of S.H.I.E.L.D. Alarms are flashing. Thor is in Asgard.Spider-Man is in New York.Hulk is somewhere… smashing (SMASH! CRUNCH!)Iron Man is building something danger00
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
NRNavdeep Rohillainjavascript-journey-by-navdeep.hashnode.dev·May 10 · 3 min readAsync Code in NodeJS1. Why async code exists in Node.js Imagine you ask Node.js to read a file from your disk. That file could be small — or it could be 200MB. Either way, reading it takes time. And while Node.js is wait00
NRNavdeep Rohillainjavascript-journey-by-navdeep.hashnode.dev·May 10 · 5 min readSynchronous vs Asynchronous JSJavaScript is single-threaded. That sounds technical, but it simply means: it can only do one thing at a time. If JavaScript only does one thing at a time, how does it handle loading tweets, playing a00
NRNavdeep Rohillainjavascript-journey-by-navdeep.hashnode.dev·May 10 · 5 min readAsync/Await in JSIntroduction Remember the "Pyramid of Doom"? Or those never-ending .then().catch() chains that made your code look like a zigzag? JavaScript’s asynchronous nature is powerful, but handling it traditio00
ACARKPARAVA CHAKRABORTYinunderstand-and-build-in-web.hashnode.dev·May 10 · 3 min readFrom "Maybe" to "Definitely": JavaScript Promises Explained for BeginnersIf you have ever ordered a pizza online, you have already used a Promise. You place an order, and the shop gives you a "receipt." That receipt isn't a pizza, but it is a promise that you will get one 00
HBHimanshu Balaniinblog.himanshubalani.com·May 10 · 5 min readMaking Sense of JavaScript PromisesIf you write JavaScript, you spend a lot of your time waiting. You wait for a database to return a user profile, you wait for an API to send back weather data, or you wait for a user to click a button00
NRNavdeep Rohillainjavascript-journey-by-navdeep.hashnode.dev·May 10 · 6 min readJavaScript Promises: Explained for BeginnersIntroduction Whenever we use websites like Instagram, YouTube, WhatsApp, or Netflix, many things happen in the background. Messages load after some time. Videos buffer. Data comes from servers. Paymen00
SDSouparna Dharainsouparna-tech.hashnode.dev·May 10 · 5 min readAsync Code in Node.js: Callbacks and PromisesNode.js is single-threaded. This means it can only do one thing at a time. But imagine a web server that stops responding to new users while it reads a file from disk or fetches data from a database. 00