David Mbredavidmb.hashnode.dev·4 hours agoCUDOS 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...DiscussCloud 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
Muhammad Sufiyaninnosufiyan.hashnode.dev·Jul 22, 2024API Call and DOM Manipulation - Vanilla JavaScriptThis guide will show you how to fetch data from an API and display the results on a web page using HTML, CSS, and JavaScript. We will use the following API to get recipes for pizza: https://forkify-api.herokuapp.com/api/v2/recipes?search=pizza. 1. Se...Discuss·106 readsSMIT - Batch 11HTML5
Shreyansh Guptashreyanshgupta.hashnode.dev·Jul 13, 2024Understand CORS and how to fix a CORS errorWhat is CORS? CORS stands for Cross-Origin-Resource-Sharing. Let us say your backend is an API-only app and it is deployed on Heroku. Your frontend is deployed on Netlify. So your frontend will be communicating with your backend which is on a differe...Discuss·49 readsCross-Origin Resource Sharing
Syed Aquib Alihadetan.hashnode.dev·Jun 10, 2024Callback Functions, Promises, Async/Await and Fetching API'sCallback Functions A callback function is a function that is passed as an argument to another function and is executed after some operation has been completed. Callbacks are commonly used for asynchronous operations in JavaScript, such as fetching da...Discusscallback functions
Vedansh Mishravedansh.hashnode.dev·May 25, 2024Unlocking the Mysteries of the Fetch API: Beyond the BasicsBefore starting, I have a question. Let's say you get a 404 error (file not found) while fetching a request. Where will the data get stored: in resolve or reject? Stay connected with the article to find the answer by the end. You must have been using...Discuss·66 readsfetch API