Knowledgebase
By using Node Version Manager particular applications can be ran with a specific node version which can be required for applications requiring a certain version of Node.js
To run an application with a defined version of Node run the nvm execute command
nvm exec 20.5.1 node . --versionThis will run the application on this version and allow for other versions of Node.js to be installed and used on the server at the same time with Node Version Manager.