Javascript

How To Manage State on React Class Components — step-by-step Javascript tutorial on Progressive Robot

How To Manage State on React Class Components

In React, state refers to a structure that keeps track of how data changes over time in your application. Managing state is a crucial skill in React because it allows you to make interactive web applications. In this tutorial, you’ll run through an example of managing state on class-based components. This tutorial will first show you how to set state using a static value and then how to set a state as the current state, using a product page component as an example.

Read more
How To Build Command Line Applications with Node.js — step-by-step Javascript tutorial on Progressive Robot

How To Build Command Line Applications with Node.js

As a developer, chances are you spend most of your time in your terminal, typing in commands to help you get around some tasks. Some of these commands come built into your Operating System, while some of them you install through some third party helper such as npm, or brew, or even downloading…

Read more
Einrichten eines Node-Projekts mit TypeScript — step-by-step Javascript tutorial on Progressive Robot

Einrichten eines Node-Projekts mit TypeScript

Das Schreiben von serverseitigem JavaScript kann schwierig sein, wenn eine Codebase wächst. TypeScript ist eine typisierte (optionale) Obermenge von JavaScript, die bei der Erstellung und Verwaltung großer JavaScript-Projekte helfen kann. Man kann es sich als JavaScript mit zusätzlichen Funktionen wie starker statischer Typisierung, Kompilierung und objektorientierter Programmierung vorstellen. In diesem Tutorial werden wir erkunden, wie das [Express](https://expressjs.com/)-Framework mit TypeSc

Read more
CHAT