JavaScript

How To Generate a Vue.js Single Page App With the Vue CLI — step-by-step Javascript tutorial on Progressive Robot

How To Generate a Vue.js Single Page App With the Vue CLI

Vue.js is a popular JavaScript framework for creating user interfaces, often described as a combination of React and Angular, borrowing the prop-driven development of React and the templating of Angular. In this tutorial, you will use the Vue CLI vue create command to create a new Vue application, then try it out by building some single-file components.

Read more
Реализация плавной прокрутки в React — step-by-step Javascript tutorial on Progressive Robot

Реализация плавной прокрутки в React

Что такое плавная прокрутка? Вместо того, чтобы нажимать на кнопку и сразу же переходить на другую часть (той же самой) страницы, пользователь переходит туда посредством анимации прокрутки. Это одна из малозаметных особенностей сайтов, которая однако имеет эстетическое значение.

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

How To Install Node.js on Rocky Linux 8

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

Read more
How To Use Enums in TypeScript — step-by-step Javascript tutorial on Progressive Robot

How To Use Enums in TypeScript

In TypeScript, enums, or enumerated types, are data structures of constant length that hold a set of constant values. Each of these constant values is known as a member of the enum. Enums are useful when setting properties or values that can only be a certain number of possible values. This tutorial will explain the syntax used to create enum types, the JavaScript code that the TypeScript compiler creates under the hood, and a use case for enums in game development.

Read more
How to Use Node.js and Github Webhooks to Keep Remote Projects in Sync — step-by-step Linux tutorial on Progressive Robot

How to Use Node.js and Github Webhooks to Keep Remote Projects in Sync

In this guide you will develop a Node.js server that listens for a GitHub webhook notification whenever you or someone else pushes code to GitHub. This script will automatically update a repository on a remote server with the most recent version of the code, eliminating the need to log in to a server to pull new commits.

Read more
CHAT