© 2023 Hashnode
#node
Open your command prompt or terminal. Check the current version of Node.js installed on your system by running the following command: node -v Visit the official Node.js website (https://nodejs.org)…
Introduction: JavaScript is known for its synchronous and single-threaded nature, executing code line by line in a sequential manner. However, when it comes to Node.js, JavaScript can break free from this sequential execution model and hand…
In this article, we will be seeing how to connect your MySQL database to nodejs in typescript. Now you may be wondering why not javascript. Well, typescript is the widely used language and is much str…
Hands-On Lab01. Deploy an Azure Kubernetes Service (AKS) cluster->Create a resource group using the Azure CLI->Create an AKS cluster using the Azure CLI 02. Deploy pods into the AKS cluster->Connect t…
Node.js Introduction What is Node.js? The Benefits of Using Node.js Node.js vs. Other Runtimes Installing Node.js Supported Operating Systems Installing Node.js via Package Managers Verifyi…
A closure is the combination of a function bundled together (enclosed) with references to its surrounding state (the lexical environment). In other words, a closure gives you access to an outer function's scope from an inner function. In Ja…
What is nodeNode is a form of JavaScript which is not associated with any webpage, i.e. it does not have a DOM or document object as root element. But node is the same JavaScriptwhen it is run as an independent code. What is npmnpm is a pac…
So, peerDependencies are the dependencies generally mentioned in libraries' package.json which suggest to the library users, that they should install these dependencies explicitly (or have already ins…
You must have heard that Javascript is a single-threaded non-blocking asynchronous concurrent language. Today we will find out what it actually means. First, let us understand Why do we call Javascri…
Ready to dive into CKB? Here's what you need to do: Download Initiate your CKB node Run! Your Burning Questions Answered How is running a node different to mining? Miners can propose new blocks …