Reputation: 62185
After installing node via nvm I normally also update npm to the newest version. It this actually a recommended practice? Or should I use the npm version which is installed with node?
Upvotes: 2
Views: 57
Reputation: 70075
The npm team recommends doing an npm install -g npm
after installing Node. (In other words, they recommend updating to the latest stable npm
.) See, for example, this npm blog post.
Upvotes: 4