Home > Enterprise >  How to use Multiple versions of Node on a single machine?
How to use Multiple versions of Node on a single machine?

Time:03-09

I am tasked to update the node version for a huge repository which is currently v14.18.0, what is the best way I can go about doing that with minimal version issues with packages and node?

CodePudding user response:

You can install NVM to install multiple version of node and switch between them : https://github.com/nvm-sh/nvm

  • Related