Javascript

Como usar o Font Awesome 5 com o React — step-by-step Javascript tutorial on Progressive Robot

Como usar o Font Awesome 5 com o React

O Font Awesome é um kit de ferramentas para sites que oferece ícones e logotipos. O React é uma biblioteca de programação que utiliza o JavaScript para criar interfaces de usuários. Embora o time do Font Awesome tenha criado um componente do React para promover a integração, ainda existem alguns fundamentos a serem compreendidos sobre o Font Awesome 5 e como ele é estruturado. Neste tutorial, você irá aprender as maneiras de usar o componente Font Awesome do React.

Read more
How To Write Asynchronous Code in Node.js — step-by-step Javascript tutorial on Progressive Robot

How To Write Asynchronous Code in Node.js

With asynchronous programming, JavaScript and Node.js developers can execute other code while waiting for activities like network requests to finish. This can make writing API calls much more efficient. In this tutorial, you will learn how JavaScript manages asynchronous tasks with help from the Event Loop. You will then create a program that uses asynchronous programming written in three ways: with callbacks, promises, and the async/await keywords.

Read more
A Fetch API Primer — step-by-step Javascript tutorial on Progressive Robot

A Fetch API Primer

In this quick post we’ll go over using the Fetch API to GET or POST some JSON data to an external resource. We’ll also go over proper error handling.

Read more
CHAT