helpermethod
helpermethod

Reputation: 62185

Is updating npm after installing node recommended?

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

Answers (1)

Trott
Trott

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

Related Questions