JavaScript

How To Set Up React Using Webpack 4 and Babel 7 — step-by-step Javascript tutorial on Progressive Robot

How To Set Up React Using Webpack 4 and Babel 7

A common way to learn React is to use create-react-app, which is a lightweight way to bootstrap any React project. But in order to achieve a particular purpose, it is sometimes necessary to configure your application from scratch. In this tutorial, we will be setting up React using Webpack and Babel.

Read more
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
CHAT