Ogunuyo Ogheneruemu Biruemu.hashnode.dev·Oct 23, 2024FeaturedHow to Build a CRUD Application with React and PHPIn this blog post, we will create a CRUD (Create, Read, Update, Delete) application using React for the frontend and PHP for the backend. We will store our data in a MySQL database, communicate between the frontend and backend using Axios for HTTP re...Discuss·17 likes·277 readscrud
Costanza CasulloforCosti Techcostanza.website·Oct 16, 2024Fetching Data from a Baserow Table Using Nuxt: A Step-by-Step TutorialIn this tutorial, we’ll walk through fetching data from a Baserow table using Nuxt. We’ll use Nuxt 3, TypeScript, Axios and the Baserow API to display content from a Baserow database. First of all, create an account on Baserow and add a simple table....Discuss·75 readsNuxt
Nicole Gathanynicolegathany.hashnode.dev·Oct 7, 2024GraphQL vs. REST APIsToday I was reflecting on an interview I had last year where the interviewer said “At your last company, you used GraphQL. I’m surprised that you didn’t use REST APIs.” If I can be really transparent and vulnerable with you all here, I was caught off...Discuss·87 readsGraphQL
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
Ramkumar Raghuwanshitechquestram.hashnode.dev·Sep 20, 2024A Guide to Using Axios for Data Fetching in Next.jsIntroduction In web development, fetching data from APIs is crucial. Whether you’re building client-side applications or server-side services, interacting with external APIs is essential for real-time data. One of the most popular libraries for makin...DiscussNext.js
Rahul Krishnarahulkrishna28.hashnode.dev·Sep 19, 2024Axios Interceptors in React.js: A Developer’s GuideHey there, fellow React developers! 👋 We’re diving into the world of Axios interceptors — a powerful feature that can seriously level up your HTTP request game. Whether you’re building a small side project or a complex enterprise application, unders...Discuss·2 likesaxios-interceptor
Bahrul Rozakbahrulrozak.hashnode.dev·Sep 18, 2024SuperFetch: The Next-Level HTTP Client LibraryIn the fast-paced world of web development, choosing the right tool for managing HTTP requests can significantly impact your application's performance and maintainability. While libraries like axios and fetch are popular choices, there's a new conten...Discussfetch API
Arkadipta Kunduarkadiptakundu.hashnode.dev·Sep 18, 2024How to Use Axios for API Requests in Node.jsYesterday, I learned Axios, a promise-based HTTP client, and it’s mainly used for making API requests from the server. If you're working with Node.js and Express backends, chances are you'll need to fetch or send data to other APIs. That’s where Axio...Discussaxios
Sebastian Goscinskisebiweise.hashnode.dev·Sep 10, 2024Automating Testing with Jest: Boosting Your Code ConfidenceAs developers, we strive to write clean, maintainable, and bug-free code. But let’s face it - no matter how experienced we are, bugs always find a way into our codebase. Unit testing can alleviate some of those woes by providing confidence that our c...DiscussNode.js
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