Archive: JavaScript

Latest Posts
03 May 2022
What is Event Loop – Things To Know

The event loop is what allows javascript to handle thousands and thousands of requests with just a single thread. This architecture allows Javascript and/or Node.js engines to offload operations to the system kernel.

The generic explanation given above is all good but how does it actually work? We are going to talk about this later in this article but first, we need to understand how javascript works and where the need for the event loop comes in.

08 February 2022
How To Install Node.js on Ubuntu 22.04

Introduction

Node.js is a JavaScript runtime for server-side programming. It allows developers to create scalable backend functionality using JavaScript, a language many are already familiar with from browser-based web development.

In this guide, we will show you three different ways of getting Node.js installed on an Ubuntu 22.04 server: