How do you handle minor npm version updates with this? Let's say my project node is at 20.10.0 but my global node is a running 18.x. When I use npm in my project folder it says I can update from npm 10.2.3 to 10.3.0. Will running npm install -g npm@10.3.0 put my global npm out of sync with my global node? Hope that makes sense.
How do you handle minor npm version updates with this? Let's say my project node is at 20.10.0 but my global node is a running 18.x. When I use npm in my project folder it says I can update from npm 10.2.3 to 10.3.0. Will running
npm install -g npm@10.3.0put my global npm out of sync with my global node? Hope that makes sense.Hello @kyleridolfo ,
I believe you can run
npm install -g npm@10.3.0as long as you have node v20.11.0 set globally.In terms of steps:
nodenv install 20.11.0nodenv global 20.11.0npm install -g npm@10.3.0I hope this helps