Javascript

How To Use Decorators in TypeScript — step-by-step Javascript tutorial on Progressive Robot

How To Use Decorators in TypeScript

Decorators are a way to decorate members of a class, or a class itself, with extra functionality. This tutorial covers creating decorators in TypeScript for classes and class members, and also how to use them.

Read more
How To Build a Discord Bot with Node.js — step-by-step Javascript tutorial on Progressive Robot

How To Build a Discord Bot with Node.js

Discord is a chat application that allows millions of users across the globe to message and voice chat online in communities called guilds or servers. In this tutorial, you will build a Discord bot from scratch, using Node.js and the Discord.js library, which allows users to directly interact with the Discord API. You’ll set up a profile for a Discord bot, get authentication tokens for the bot, and program the bot with the ability to process commands, with arguments, from users.

Read more
An Introduction to JSON — step-by-step Javascript tutorial on Progressive Robot

An Introduction to JSON

JSON — short for JavaScript Object Notation — is a format for sharing data. As its name suggests, JSON is derived from the JavaScript programming language, but it’s available for use by many languages. This informational guide will get you up to speed with the data you can use in JSON files, and the general structure and syntax of this format.

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
CHAT