Mikeydraken.hashnode.dev·Sep 26, 2023Mastering Axios - The Complete Guide to the Modern HTTP Client for JavaScriptAxios has become the go-to HTTP client for web developers building modern JavaScript applications. Its promise-based interface, configurable defaults, interceptors and robust feature set make Axios flexible for diverse use cases. In this comprehensiv...Discussaxios
Dhyan Amit Shahdhyanshah.hashnode.dev·Sep 25, 2023Caching in Node.js: Boosting Speed and Efficiency with Axios, Redis, and ISRO's API 🚀In today's fast-paced world, web applications need to be lightning-fast to keep users engaged and satisfied. One of the key strategies to achieve high performance is caching. Caching allows us to store frequently requested data temporarily, reducing ...Discuss·12 likes·68 readsBackend Web DevelopmentNode.js
Fernando De La Madriddeadcode.hashnode.dev·Sep 20, 2023How to useQuery on actions and side-effectsIntro In 2019, memorable moments included Snapchat's introduction of the baby face filter, the conclusion of Game of Thrones (before any further disappointments), and the emergence of React Query, also known as TanStack Query. React Query, a potent d...Discussreact-query
Quraishquraishcodes.hashnode.dev·Sep 18, 2023How to use the response from Axios on Client sideWhile I was trying to use Axios today to POST some data to a HubSpot API, I encountered an undefined error. Let me explain. While using Axios & receiving its response in .then() I am able to see my API response successfully when viewed in the console...Discussaxios
Oluwafunmikeoluwafunmike.hashnode.dev·Sep 7, 2023Mastering CRUD Operation with AXIOSIntroduction In this article, I am going to show you how we can create data, retrieve data from the database as well as delete data from the database, which is the essence of CRUD operation using AXIOS. We will build a contact list, more like a phone...Discuss·7 likesjson
Sandip ShresthaforJoBins Engineeringblog.jobins.jp·Aug 29, 2023Axios Interceptors with Practical ExamplesAxios is the go-to JavaScript library for handling requests to websites. In this guide, we'll start with the basics of something called 'Axios interceptors.' Think of them as clever tools built into Axios that let you tweak requests and responses wit...Discuss·1 like·56 readsDeveloper
Deepakrealdeepak.hashnode.dev·Aug 17, 20237 JavaScript Methods to Retrieve Data from APIs SeamlesslyHere are 7 of the most popular methods: 1). Fetch API The Fetch API is a modern, promise-based API that provides a clean and concise way to fetch resources asynchronously across the network. It supports modern features like streaming and is the prefe...DiscussJavaScript
Debasmit Biswaldebasmitbiswal.hashnode.dev·Aug 13, 2023Mastering API Design: Best Practices and Proven StrategiesIntroduction APIs (Application Programming Interfaces) play a pivotal role in modern software development, enabling seamless communication and data exchange between different applications. Whether you're a seasoned developer or just stepping into the...DiscussAPIs
K Srinivas Raosrini-dev.hashnode.dev·Jul 31, 2023Overcoming Axios Limitations in Service WorkersIn this post, we are going to address an issue that's not widely documented: Axios, a widely-used HTTP client, does not work with Service Workers. We'll delve into the reasons behind this and provide a workaround for anyone facing the same issue. Und...Discuss·1 like·33 readschrome extension
Balogun Wahabbwahab.hashnode.dev·Jul 29, 2023Practical use case of the Abortcontroller and Axios cancel tokenIntroduction When implementing functionalities that involve making API requests, there are occasions where we need to cancel a pending request either based on the feature requirements or to prevent unexpected behavior in our application. Some of thes...DiscussJavaScript