Vitthal Korvanvitthal-korvan.hashnode.dev·Oct 2, 2024Fetch API and AXIOSFetch API The Fetch API is a modern, flexible, and powerful JavaScript interface for making HTTP requests to servers. It is a replacement for XMLHttpRequest (XHR) and offers a simpler, cleaner syntax using promises, allowing developers to handle asyn...Discuss·1 likeAsynchronous JavaScriptaxios
Rakesh kumarbucketflow.hashnode.dev·Oct 2, 2024How to Fetch and Display Random User Data Using JavaScript: A Beginner's GuideIntroduction In this tutorial, we'll build a simple Random User Data Generator using JavaScript. This project will teach you how to: Fetch data from an external API using fetch() Display the fetched data on a webpage dynamically Implement error ha...DiscussJavaScript
Rishi BakshiforRishi Bakshi Blogrishibakshi.hashnode.dev·Sep 22, 2024Still Convinced That Multiple Fetch Requests Hit the Database Multiple Times? You’re Missing Out!One of the common mistakes I've encountered while working with Next.js is the misconception that making separate data fetching requests in different components is inefficient or problematic. In this article, we'll explore this mistake, how caching wo...DiscussYou Don't Know Next.jsfetch
Rajan Guptacryptoraj.hashnode.dev·Sep 19, 2024How the CUDOS x ASI Merger is Paving the Future for AI and Decentralized Cloud ComputingIn recent weeks, the blockchain and AI communities have been buzzing about the upcoming merger between CUDOS and the Artificial Superintelligence Alliance (ASI). As we approach the critical governance vote on September 19th, it’s important to underst...Discusscudos
David Mbredavidmb.hashnode.dev·Sep 17, 2024CUDOS and Artificial Superintelligence Alliance (ASI) Merger: What You Need to KnowIn a move set to reshape the decentralized AI landscape, CUDOS, a leader in distributed AI computing, has announced plans to merge with the Artificial Superintelligence Alliance (ASI), pending approval by both communities. The ASI, formed by powerhou...Discuss·32 readsCloud Computing
ByteScrum TechnologiesforByteScrum Technologiesblog.bytescrum.com·Sep 10, 2024Fetch vs Axios: Choosing the Right API Tool in JavaScriptWhen you’re building a web application, interacting with APIs is almost inevitable. Whether you’re pulling in data from an external source or sending information to a server, making HTTP requests is essential. In JavaScript, two popular ways to make ...DiscussJavaScript
Vashishth Gajjarvashtech.hashnode.dev·Aug 21, 2024Chapter 5: Fetching Data5.1 Why Fetch Data? Fetching data is what makes your app dynamic. It allows you to bring in external information like user data, blog posts, or product listings and display it in your app. Imagine having a blog where you can dynamically pull in new a...DiscussMastering Next.jsNext.js
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·Aug 13, 2024Today, I Deepened My Understanding of the fetch FunctionHey folks! Today, I delved into something that's been a part of my coding life for a while, but I never really stopped to appreciate its inner workings—the fetch function. It's a crucial tool, especially in web development, where we're constantly dea...Discuss·10 likes·26 readsJavascript Basicsfetch API
robbie wererobbie345.hashnode.dev·Jul 26, 2024Mastering Data Fetching: How to Use Fetch API with Trivia DB for Seamless IntegrationThe Fetch API provides a modern way to make HTTP request in java script. Trivia DB is a free API that provides trivia questions and answers. By combining these two, you can create a trivia app that fetches questions from trivia DB and displays them t...Discuss#trivia DB
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...DiscussJavaScript