A comparison of nvm and Volta to manage Node.js projects (without Yarn).
nvm installNote: Node.js version is pinned in .nvmrc.
Not necessary.
npm installnpm installNote: Volta installs the right Node.js version when running npm install if the version is pinned in the volta section in package.json.
cd project
nvm usecd projectNote: No extra steps necessary with Volta.
nvm installThe next time npm install is executed Volta will automatically update Node.js.