Mohammad Anas khanforanas khan's anaskhan.hashnode.net·Jan 26, 2023Fetch API Data using Axios library in React JsWhat is Axios? Axios is a promise-based HTTP library that allows you to make requests to a given endpoint, An HTTP request endpoint is a targetable URL in the web application, such as https://localhost:3000/movies. When you make a request, depending ...Discuss·10 likes·176 readsaxios
Ayomide Paul AsaniyanforAsaniyan's blogasaniyan.hashnode.net·Feb 6, 2023Data Fetching with React SuspenseOverview Suspense lets components "wait" for something before they can render. It suspends(you could guess that from the name) component rendering if data needs to be pulled from external resources, external API, or the backend. It is a declarative w...Discuss·10 likes·74 readsFrontend Development
Abhishek HolaniforAbhishek Holani's Blogabhishekh007.hashnode.net·Apr 25, 2023Data Fetching in NextJSIntroduction In today's digital world, websites, and web applications have become essential to our lives. With the increasing demand for fast and responsive web experiences, developers are always exploring new ways to enhance website performance. Nex...Discuss·4 likesdata fetching
Abhishek HolaniforAbhishek Holani's Blogabhishekh007.hashnode.net·Apr 25, 2023Data Fetching in NextJSIntroduction In today's digital world, websites, and web applications have become essential to our lives. With the increasing demand for fast and responsive web experiences, developers are always exploring new ways to enhance website performance. Nex...Discuss·4 likesdata fetching
Sarthak DobriyalforSarthak's Blogsarthk.hashnode.net·Apr 19, 2023Never fetch data any other way in ReactReact is a popular frontend library that allows developers to create dynamic web applications by displaying data received from an API endpoint. However, fetching data can be a challenging task and is considered a crucial part of building a React appl...Discuss·1 like·27 readsReact
Rohan BagchiforCollection of notes and musingsrohanbagchi.hashnode.net·Apr 14, 2023Data fetching in our React SPATo fetch data inside a react component, we primarily need 2 things: Source Consumer The source can be a REST or GraphQL endpoint.Consumer in our case is a browser-based application. A common pattern with React apps fetching data without using a 3...DiscussReact
Durgesh UpadhyayforScaling Startups with Full-Stack Devudurgesh6.hashnode.net·Mar 24, 2023getServerSideProps in NextJSWhat is getServerSideProps? getServerSideProps is a function that runs on the server before a page is rendered. It is used to fetch data from an external source and pass it down to the page as props. This allows you to pre-render pages with dynamic d...DiscussNext.js
Siddharth SinghforSelf Learning Advanced Topicsofficiallysidsingh.hashnode.net·Mar 17, 2023Fetching Data In React Apps And Optimistic UI Updates Using SWR 2.0So, In my last blog, I talked about how we can fetch data and perform CRUD operations on API using Axios. There was an imminent problem with Axios. It needed a page refresh on any CRUD operation to show the mutated data. While this is OK with Vanilla...Discuss·39 readsReact
Nour Gforpeachynour.hashnode.net·Mar 3, 2023Steps to add async logic in React + redux app using createAsyncThunkIf you know anything about how to use redux-toolkit with React app , Please check this Link before starting this article : Steps to use redux-toolkit with React app Getting Started Step 01: Add the status and the error fields to your initial state c...Discuss·1 like·34 readsRedux
Ayomide Paul AsaniyanforAsaniyan's blogasaniyan.hashnode.net·Feb 6, 2023Data Fetching with React SuspenseOverview Suspense lets components "wait" for something before they can render. It suspends(you could guess that from the name) component rendering if data needs to be pulled from external resources, external API, or the backend. It is a declarative w...Discuss·10 likes·74 readsFrontend Development
Ibrahim RaimiforIbrahim's Blogibrahimraimi.hashnode.net·Feb 3, 2023Data fetching in React with SWRWhat is SWR? Usually, when we make a fetch request, we use the native fetch or a third-party library like axios. The browser then makes an HTTP call and accepts a response. While the call is being made, the user waits, usually staring at a loading in...Discuss·1 like·34 readsReact
Mohammad Anas khanforanas khan's anaskhan.hashnode.net·Jan 26, 2023Fetch API Data using Axios library in React JsWhat is Axios? Axios is a promise-based HTTP library that allows you to make requests to a given endpoint, An HTTP request endpoint is a targetable URL in the web application, such as https://localhost:3000/movies. When you make a request, depending ...Discuss·10 likes·176 readsaxios
BlossomforTrantblossom.hashnode.net·Jan 11, 2023Send data from your react application to the backend using FETCHOne of the perks of building a react application includes the ability to scale it up, and make it a full-fledged application that interacts with another program using an API. So you've built a functional react application, and now comes the time fo...Discuss·51 reads30 days of reactReact