JavaScript

How To Install Node.js on CentOS 8 — step-by-step Linux tutorial on Progressive Robot

How To Install Node.js on CentOS 8

In this guide, we will show you three different ways of getting Node.js installed on a CentOS 8 server: using `dnf` to install the `nodejs` package from CentOS’s default AppStream repository; installing `nvm`, the Node Version Manager, and using it to install and manage multiple versions of `node`; compiling and installing `node` from source.

Read more
Cómo usar Font Awesome 5 con React — step-by-step Javascript tutorial on Progressive Robot

Cómo usar Font Awesome 5 con React

Font Awesome es un kit de herramientas para sitios web que proporciona iconos y logotipos de redes sociales. React es una biblioteca de codificación que usa JavaScript para crear interfaces de usuario. Aunque el equipo de Font Awesome ha creado un componente React para promover la integración, existen algunos fundamentos para comprender Font Awesome 5 y cómo se estructura. En este tutorial aprenderá las formas de usar el componente React Font Awesome.

Read more
How To Manage State with Hooks on React Components — step-by-step Javascript tutorial on Progressive Robot

How To Manage State with Hooks on React Components

React Hooks are a broad set of tools in the React front-end JavaScript library that run custom functions when a component’s props change. Since this method of state management doesn’t require you to use classes, developers can use Hooks to write shorter, more readable code that is easy to share and maintain. Throughout this tutorial, you’ll learn how to set state using the useState and useReducer Hooks, using a product page component with a shopping cart as an example.

Read more
How To Create Animated React Apps With React Spring — step-by-step Javascript tutorial on Progressive Robot

How To Create Animated React Apps With React Spring

Animations add life to your applications and improve the overall user experience. React Spring is an animation package that uses spring-like physics in its core animations to make it easily configurable. In this tutorial, you will create a sliding and fading animation in a React app with React Spring.

Read more
CHAT