I am gonna introduce you to a tool named Volta which is a nvm alternative.
Volta is not limited to Node JS but also manages other JS tools like global npm packages, package managers for node, etc.
How to use Volta
# install Volta
curl https://get.volta.sh | bash
# install Node
volta install node
OR
volta install node@version
# start using Node
node
# change node version
volta pin node@version
For more information check out volta website
Top comments (0)