How to install Node.js for the logged-in user without admin access

Most installation methods for Node.js require the administrator password. But, if you don’t have admin access, you can manually install a specific Node.js version for your user without administrative privileges. Here are the steps: 1. Download Node.js Binary:   – Visit the Node.js download page(https://nodejs.org/en/download/).   – Choose the LTS (Long-Term Support) version that you want to… Continue reading How to install Node.js for the logged-in user without admin access

Node Js Mobile OTP based authentication and authorization API using Nodejs and Mongodb

Dependencies 1) Express Js Express is a back end framework for Node.js.It is designed for building web applications and APIs. It has been called the de facto standard server framework for Node.js 2) Mongoose Mongoose is a Database ODM for Nodejs. It provide schema based api to model our mongodb schema.It is famous in world… Continue reading Node Js Mobile OTP based authentication and authorization API using Nodejs and Mongodb

Creating Simple Node js Application

Creation of a simple node js application Installation and connection with DB Basic Commands used for the installtion Starting the application To install a basic simple app for node firstly need to check the node version on the system If node is not installed check the following documents for the node installation Node.js — Download… Continue reading Creating Simple Node js Application

Install Node.js 20.0.0 version with nvm.

Install nvm: Open a terminal. Run the following command to install nvm: Copy code curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash This command installs nvm using the installation script from the official GitHub repository. If you encounter any issues or if the version has been updated, please check the nvm GitHub repository for the latest installation instructions.… Continue reading Install Node.js 20.0.0 version with nvm.

Error: The system cannot execute the specified program.

Got this error when trying to use Node version 14.19.0 after installing it using the gulp command. Solution The error message “The system cannot execute the specified program” typically indicates that the command we are trying to run is not recognized by the operating system. Make sure you have Node Version Manager (NVM) installed correctly.… Continue reading Error: The system cannot execute the specified program.

NVM, Node, and Gulp installation

How To Install NVM on Ubuntu 20.04 Installing NVM on Ubuntu Installing Node using NVM Install the latest version of node.js. Here node is the alias for the latest version. nvm install node To install a specific version of node: nvm install 12.18.3  Working with NVM To list installed versions of the node for the… Continue reading NVM, Node, and Gulp installation