Pranav Bawgikarpranavbawg.hashnode.dev·Jan 12, 2025Why you should switch from Fetch to Ky[31] Why do we need to fetch data from APIs? Fetching data from APIs is like getting information from a specialized messenger. An API is like a postman who can go to different places and bring back specific information for you. Sometimes, the informa...axios
Adam Urbanurbanisierung.hashnode.dev·Dec 8, 2024How to use a proxy in a nodejs environmentThere is an established standard by which proxies are configured. It runs via the following environment variables: https_proxy: Proxy for https traffic http_proxy: Proxy for http traffic no_proxy: URLs that should not run via a proxy. The native...Node.js
CODEWITHG.COMguillaumeduhan.hashnode.dev·Dec 6, 2024Les différents modèles de récupération de données dans ReactNote: Cet article se concentre sur les modèles de récupération de données dans les composants React, aussi bien côté client que côté serveur. Il est important de préciser que cet article n'aborde pas les différentes méthodes de récupération des don...React
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...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...JavaScript
Rishi Bakshirishibakshi.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...You 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...cudos
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...33 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 ...JavaScript
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...Mastering Next.jsNext.js