JavaScript

How To Manage State in a Vue.js Application with Vuex — step-by-step Javascript tutorial on Progressive Robot

How To Manage State in a Vue.js Application with Vuex

Vuex is the first-party development state management library for Vue.js. Vuex follows the principle that Redux has popularized over the past years: Data flows in one direction, with actions and mutations modifying data in a single source of truth called the store. In this tutorial, you will create an application that renders a list of cards with airport information in them. When clicked, these cards will execute the Vuex workflow to add the selected airport to a list of favorites.

Read more
How To Set Up a Gatsby Project with TypeScript — step-by-step Javascript tutorial on Progressive Robot

How To Set Up a Gatsby Project with TypeScript

TypeScript is a superset of JavaScript that adds optional static typing at build time, which cuts down on debugging runtime errors. It’s static-typing abilities go well with a static-site generator like Gatsby, and Gatsby has built-in support for coding in TypeScript. In this tutorial, you’re going to use Gatsby’s built-in capabilities to configure a Gatsby project for TypeScript.

Read more
How To Use Destructuring Assignment In JavaScript — step-by-step Javascript tutorial on Progressive Robot

How To Use Destructuring Assignment In JavaScript

JavaScript provides you with the ability to destructure objects and assign the individual units in one take. Destructuring means to unpack the values of objects or arrays into variables. At the end of this guide, you will see how to use it and what it can replace for you.

Read more
Использование Font Awesome 5 с React — step-by-step Javascript tutorial on Progressive Robot

Использование Font Awesome 5 с React

Font Awesome — инструментарий для сайтов, предоставляющий иконки и логотипы для социальных сетей. React — библиотека программирования, использующая JavaScript для создания пользовательских интерфейсов. Хотя команда Font Awesome выпустила компонент React для поддержки интеграции, разработчикам следует знать базовые принципы работы и структуру Font Awesome 5. В этом учебном модуле вы научитесь использовать компонент React Font Awesome.

Read more
How To Use the Node.js REPL — step-by-step Javascript tutorial on Progressive Robot

How To Use the Node.js REPL

The Node.js Read-Eval-Print-Loop (REPL) is an interactive shell that processes Node.js expressions. The shell reads JavaScript code the user enters, evaluates the result of interpreting the line of code, prints the result to the user, and loops until the user signals to quit. The REPL is bundled with with every Node.js installation and allows you to quickly test and explore JavaScript code within the Node environment without having to store it in a file.

Read more
CHAT