Javascript

Настройка проекта Node с помощью Typescript — step-by-step Javascript tutorial on Progressive Robot

Настройка проекта Node с помощью Typescript

По мере увеличения базы кода написание серверного кода JavaScript становится сложнее. TypeScript — это типовой (опциональный) супернабор JavaScript, который может помочь со сборкой и управлением крупномасштабными проектами JavaScript. Его можно представить как JavaScript с дополнительными возможностями, включая мощное статическое типирование, компиляцию и объектно-ориентированное программирование. В этом учебном модуле вы узнаете, как использовать структуру [Express](https://expressjs.com/) с Ty

Read more
Understanding Events in JavaScript — step-by-step Javascript tutorial on Progressive Robot

Understanding Events in JavaScript

Events are actions that take place in the browser that can be initiated by either the user or the browser itself. In this JavaScript aticle, we will go over event handlers, event listeners, and event objects. We’ll also go over three different ways to write code to handle events, and a few of the most common events. By learning about events, you’ll be able to make a more interactive web experience for end users.

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
CHAT