curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
## List available versions
nvm ls-remote
## Install a specific version of node
nvm install 12
## Use a specific version
nvm use 18.18.0
## Upgrade to last LTS version & update your project
nvm install 'lts/*' --reinstall-packages-from=current