© 2023 Hashnode
#node
Ich dachte mir, ich brauche so einen Weisheiten generator, man kennt ja schon "thispersondoesnotexists.com" oder auch andere. Aber die Idee den Text und den Prompt für DALL-E zu generieren fiel mir während meines eintägigen Wellnessurlaubs …
I've previously written about these two runtimes independently, be sure to check out those posts as well for a deep-dive. Node Article Deno Article Node and Deno, the two JavaScript runtimes that have taken the developer world by storm. Bot…
In Node.js, JavaScript code runs in a single thread. When a piece of code is executed, it blocks the execution of any other code until it finishes. The above means that if a long-running task, such a…
Why do we need event handlers in NodeJs ? An event handler is a callback function that gets executed in response to a specific event. In NodeJs events are triggered by different parts of the runtime s…
Node.js is an open-source, cross-platform JavaScript runtime environment that executes JavaScript code outside of a web browser. Node.js allows developers to run JavaScript on the server-side to buil…
The event loop is a crucial part of how Node.js works. It is what allows Node.js to perform non-blocking I/O operations, even though JavaScript is a single-threaded language. Working: Node.js has a s…
Windows: Open the Task Manager by pressing "Ctrl + Shift + Esc" or by searching for "Task Manager" in the Start menu. In the Processes tab, look for the node.exe process. Right-click on the node.exe process and select "End Task" to kill …
Welcome to our next post on building web applications and APIs using Node.js and the Express.js framework. In this post, we will explore how to use Express.js to create a basic web application in Node.js, specifically for beginners. We will…
Working with kubernetes- We create manifest (.yml file)- Apply this to cluster (to master) to bring into desired state- Pod runs on node, which is controlled by master Roles of Master NodeKubernetes c…
As decentralized applications (dApps) address more and more use cases in Web3 segments, the infrastructure for crypto development becomes an essential part of the blockchain revolution. Blockchain no…