JavaScript

Using the React-Async Library for Declarative Data Fetching — step-by-step Javascript tutorial on Progressive Robot

Using the React-Async Library for Declarative Data Fetching

The combination of React and `async-await` leads to a mixed pattern in which we have both imperative code (for data fetching) and declarative code (for UI composition). [React-async](https://github.com/ghengeveld/react-async) provides a declarative API to perform any REST API calls using a single React component, allowing declarative programming to be used throughout the application. In this article, we will explain how the React-Async library helps us fetch data.

Read more
How To Add Charts to SolidJS Using ApexCharts — step-by-step Javascript tutorial on Progressive Robot

How To Add Charts to SolidJS Using ApexCharts

Visualizing data provides an intuitive way for users to know what is happening in the system of their web applications. In this tutorial, you will integrate ApexCharts into a SolidJS application for data visualization. You will develop an application that pulls weather data from the OpenWeatherMap API and displays it in a bar chart.

Read more
How To Build a Photo Search App with React Using the Unsplash API — step-by-step Javascript tutorial on Progressive Robot

How To Build a Photo Search App with React Using the Unsplash API

This tutorial shows how to build a JavaScript search bar application with the React front-end library to query and display images using the Unsplash API. It covers styling the user interface with CSS, managing state with React Hooks like useState(), and using JSX to display the images to a webpage. At the end of this tutorial, you’ll have a working application that uses React Hooks to query the Unsplash API.

Read more
Erstellen einer benutzerdefinierten Paginierung mit React — step-by-step Javascript tutorial on Progressive Robot

Erstellen einer benutzerdefinierten Paginierung mit React

Eine Methode zur Handhabung großer Datensätze in der Ansicht ist die Verwendung des unendlichen Bildlaufs, bei dem mehr Daten in Blöcken geladen werden, wenn der Benutzer sehr nahe an das Seitenende scrollt. Dies ist die Technik, die bei der Anzeige der Suchergebnisse in Google Images verwendet wird. In diesem Tutorial sehen wir, wie eine benutzerdefinierte Paginierungskomponente mit React zur Paginierung großer Datensätze erstellt wird. Wir werden eine paginierte Ansicht von Ländern der Welt er

Read more
CHAT