Avleen Sandhuavleen.hashnode.dev·Aug 20, 2024Utilizing fetch and .then to Integrate a Public APIWe might not always have the data we need in order to complete our desired projects. For example, suppose we are making a weather app. If you are the average person, it is more than likely that you do not have all the tools and technology needed to c...Discussfetch API
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
Vashishth Gajjarvashtech.hashnode.dev·Jul 19, 2024Chapter 9: Fetching DataWelcome back to our React series, "React Revolution"! Now that we’ve covered styling and navigation, it’s time to dive into fetching data. In this chapter, we’ll explore how to retrieve data from APIs and display it in our React components. Fetching ...DiscussReact RevolutionAPIs
Anani Serge AMOUSSOUGBOserge-codeur.hashnode.dev·Jul 8, 2024Comprendre les API et JSONSi tu t'intéresses au développement web, tu as sûrement entendu parler des API et du JSON. Ces deux concepts sont hyper importants et souvent utilisés ensemble pour créer des applications web super cool et interactives. Dans cet article, on va démy...Discuss·43 readsAPIs
heuheunetik.hashnode.dev·Jul 8, 2024HTTP streaming with Angular's built-in HttpClientWhy? Web streams are the go-to way of handling continuous async data transfer in the browser. By using them, we can process smaller "chunks" of data as we receive them, instead of waiting for a large data set to completely load. This enables us to cr...Discuss·42 readshttp-streaming
CodingShawncodingshawn.dev·Jul 1, 2024Streaming Response part 1: Server Sent Event3 methods to stream response In fact, to achieve the Streaming effect, you can use three methods: Server Sent Event (SSE) => This is the method discussed in the current article Transfer-Encoding: chunked=>You can refer to this article I wrote Webs...Discusshttp2 server push
Aniket Dhaygudeaniket04blog.hashnode.dev·Jun 29, 2024"Mastering Web APIs in JavaScript: setTimeout, setInterval, fetch(), and DOM Manipulation"Exploring Essential Web API Functions in JavaScript JavaScript, the ubiquitous language of the web, is enriched with powerful Web API functions that enable developers to perform a variety of tasks. In this blog, we'll delve into some of these essenti...Discuss·10 likesJavaScriptuseful 10
Liam Johnsonmasterdeveloper.hashnode.dev·Jun 20, 2024How to Retrieve Data from Database in Laravel?Imagine building a dynamic web application – a news website, an online store, or even a social media platform. All these applications rely on one crucial element: data. Data is the lifeblood that fuels functionality, personalizes user experiences, an...DiscussLaravel
Amadi, Victoria Chimammaprincessvee.hashnode.dev·Jun 19, 2024Why Axios is Preferred Over FetchThe Fetch API provides a modern and extensible way to send HTTP requests in JavaScript. It is included in most recent browsers, allowing developers to retrieve resources asynchronously over the network. Fetch is generally regarded for its simplicity,...Discussaxios
Vatsal Bhesaniyavatsal08.hashnode.dev·Jun 18, 2024Mastering Asynchronous JavaScript: A Comprehensive Guide to Building Responsive Web AppsIn this article, we’ll explore the world of asynchronous programming and learn how to handle non-blocking operations in JavaScript. We’ll cover the differences between synchronous and asynchronous code, callbacks, promises, async/await, error handlin...DiscussJavaScript