I just installed nodejs and npm (for additional modules).

My question is...

How could I update nodejs and the modules I'm using to the last versions?

NPM could do it? or do i have to remove and reinstall nodejs and npm for the next versions?

I followed https://github.com/joyent/node/wiki/Installation (step 3a) and the next NPM section...

Thank you!

link|improve this question
feedback

1 Answer

See the docs for the update command:

npm update [<name> [<name> ...]]

This command will update all the packages listed to the latest version (specified by the tag config). It will also install missing packages.

Also see the FAQ:

How do I update npm?

npm update npm -g

You can also update all outdated local packages by doing npm update without any arguments, or global packages by doing npm update -g.

Occasionally, the version of npm will progress such that the current version cannot be properly installed with the version that you have installed already. (Consider, if there is ever a bug in the update command.)

In those cases, you can do this:

curl http://npmjs.org/install.sh | sh
link|improve this answer
Thanks! I had to use the curl method to update from 1.0.6 to 1.0.23. – raidfive Aug 8 '11 at 21:26
Fixed it for me! – mcandre Dec 6 '11 at 19:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.