How to set default node version with NVM Date: 29-05-2021 Step 1: Login to the server via ssh. Step 2: Install the required version by using below nvm command.# nvm install v12.19.1Note: 12.20.1 – This is version. Step 3: Set 12.19.1 (or another version) as default.# nvm alias default v12.19.1… Continue Reading How to set default node version with NVM

How to install particular version of Node JS and npm using NVM Date: 17-04-2021 Introduction NVM (Node Version Manager) is a bash script that allows you to manage multiple Node JS versions. You can easily switch to other versions. Step 1: You can install nvm by using below command.# curl… Continue Reading How to install particular version of Node JS and npm using NVM