Aradhya Srivastavaprogsriaramech.hashnode.dev·Nov 25, 2024Building a Console Tool to Fetch CodeChef and GitHub User StatisticsHave you ever wanted to quickly view your CodeChef and GitHub statistics right from your console? In this blog, I’ll show you how to build a simple yet powerful Node.js script that does just that. This tool scrapes CodeChef user data and fetches GitH...Node.js
Hamidreza Mahdavipanahhamidreza.tech·Nov 22, 2024Pitfalls of URL and URLSearchParams in JavaScriptIt All Started With a Bug Working with URLs in JavaScript and Node.js should be straightforward, but a recent bug in our project led me down a rabbit hole of subtle quirks in the URL and URLSearchParams APIs. This post will explore these quirks, how ...266 readsNode.js
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...17 likes·295 readscrud
Costanza Casullocostanza.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....86 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...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...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...Next.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...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...fetch 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...axios