AKAshish Kumar Sainiinblog.ashishkumarsaini.dev00Async/Await in JavaScriptMay 22 · 2 min read · As a Javascript developer, you have seen the application become more interactive and started handling more asynchronous operations like API calls, file readings, and timers. Initially, developers relyJoin discussion
KTKushagra Trivediinkushagrablogs.hashnode.dev00The Node.js Event Loop ExplainedMay 10 · 6 min read · Node.js handles thousands of simultaneous requests — yet it runs on a single thread. That sounds like a contradiction. It isn't. The event loop is why. The Single-Thread Problem Most server environmenJoin discussion
KTKushagra Trivediinkushagrablogs.hashnode.dev00Async/Await in JavaScript: Writing Cleaner Asynchronous CodeMay 10 · 4 min read · JavaScript runs one thing at a time. But the real world doesn't wait — APIs take time to respond, files take time to load, databases take time to query. That's the async problem. And async/await is thJoin discussion
MGMrinal Gintech-log.hashnode.dev00Async/Await in JavaScript: Writing Cleaner Asynchronous CodeMay 10 · 2 min read · async/await was introduced to give a more graceful and cleaner way of handling asynchronous code. Before this, JavaScript mainly used .then() and .catch(), which involved callback-style chaining and wJoin discussion
AKAnkur Kumawatinhustlecoderankur.hashnode.dev00Async/Await in JavaScript: Writing Cleaner Asynchronous CodeMay 10 · 6 min read · So in my last post I have tried to covered Promises .then(), .catch(), chaining them together. And Promises are the one which are genuinely better than raw callbacks. But after a few chains, even theyJoin discussion
VRVISHAL RAYinrayvishal.hashnode.dev00Mastering Asynchronous Node.jsMay 10 · 1 min read · Yeah like Javascript on browser possible to write async code at node.js as well. in this blog we explore how to do, along with that we explore to use callback and promiseJoin discussion
SSSanghita Sealinsanghitadev.hashnode.dev00JavaScript Promises Explained for BeginnersMay 10 · 8 min read · There’s a very specific phase every JavaScript developer goes through where asynchronous code starts feeling frustrating instead of exciting. At first, callbacks seem simple enough. You pass a functioJoin discussion
AYAbhishek Yadavinterminal-thoughts.hashnode.dev00Async Code in Node.js: Callbacks and PromisesMay 10 · 5 min read · Imagine you are running a high-end restaurant with a unique constraint: you only have one waiter. In a traditional "synchronous" restaurant, that waiter would take an order, walk to the kitchen, and sJoin discussion
SSSanghita Sealinsanghitadev.hashnode.dev00Async/Await in JavaScript: Writing Cleaner Asynchronous CodeMay 10 · 8 min read · There’s a stage every JavaScript developer reaches where asynchronous code suddenly starts feeling exhausting instead of exciting. In the beginning, callbacks seem manageable. You write a function, paJoin discussion
MSMohd Sameerinmohd-sameer.hashnode.dev00Async/Await in JavaScript: Writing Cleaner Asynchronous CodeMay 9 · 3 min read · JavaScript was built to be non-blocking, meaning it doesn't like to wait around for slow tasks like fetching data or reading files. Historically, we managed this with Callbacks (which led to "CallbackJoin discussion