Forgot/Reset Password in Node js + Express + MySQL

In this tutorial, we’ll guide you through the process of sending a reset password link via email in a Node.js + Express + MySQL application using Nodemailer. We’ll also cover how to reset/update the password in the application using the sent reset password link. If you’ve already created a login and registration application using Node.js … Read more

Node.js Hello World

Let’s take a look at the components of a Node.js application before we make a “Hello, World!” application. The three key components of a Node.js application are as follows: Import necessary modules To load Node.js modules, we utilise the require directive. Create a server, similar to Apache HTTP Server, that will listen for client requests. … Read more

Node.js Process Model

Because of Node’s non-blocking and asynchronous nature, Node applications are very scalable. In this article, we’ll look at the NodeJS framework’s Process Model, which is based on a single main thread that runs the show. Model of a Traditional Web Server Each request is processed by a dedicated thread from the thread pool in the … Read more

Node.js Tutorial

Welcome to our Node.js tutorial, designed to provide a comprehensive understanding of Node.js for both beginners and professionals. In this tutorial, we cover basic and advanced concepts of Node.js, empowering you to harness its potential. Node.js is a versatile cross-platform environment and library that allows for the execution of JavaScript applications outside of a web … Read more