© 2023 Hashnode
#runtime
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. It allows developers to run JavaScript on the server side, creating server-side applications with JavaScript. One of the strengths of Node.js is its ability to handle a…
Not All Runtime Code Is Written By Programmers Metaprogramming itself is not a new approach to writing software. It originates in the 1970s and since that time even became a popular coding style for L…
If you are a JavaScript developer you often had listened to the word 'NodeJs'. And After This If You Have a Question In Mind: What exactly is Node.Js? Then Read This article carefully. Introduction No…
In Java, the garbage collector is a built-in feature that automatically manages the allocation and deallocation of memory. It is responsible for freeing up memory that is no longer being used by the p…
After programming in C# for almost 19 years, I've decided to try my hand at TypeScript. Still thinking Object Oriented Programming concepts and C#, I've run into a few doozies I thought I'd document. …
What is bun? 🤔 Bun is defined as a 'fast all-in-one JavaScript runtime' It is the third of its kind after Node.js and Deno.js, created by Jarred Sumner using the Zig programming language. Its major a…
Most developers know Node.js as the standard runtime for using JavaScript outside of the browser. But recently, a new runtime—Bun—has been announced that claims to be 3x faster than Node.js, and even …
Functions Retain Their Scope It is important to recall that when an identifier (i.e., a variable) is used, the JavaScript engine will check the scope chain to retrieve the value for that identifier. …
So you want to learn about Deno, the new JavaScript runtime? Well, you've come to the right place! This guide will teach you everything you need to know about Deno. What is Deno? Deno is a runtime for…
The JavaScript ecosystem is considered one of the largest among programming languages, boasting a wide range of tools and frameworks. However, executing JavaScript requires a runtime like Google's browser-based V8 Engine, Node.js, and Deno.…