How to use nvm to upgrade Node.js

873 Views Asked by At

Now I use Node.js in version 0.10.21, how to upgrade to v0.10.23 with out reinstall the whole Node.js and global NPM packages.

2

There are 2 best solutions below

1
On

you can try following command which provided from nvm

nvm copy-packages <version> //Install global NPM packages contained in <version> to current version
0
On

Use Node Version Manager to keep old Node versions and installing newer versions: https://github.com/creationix/nvm#node-version-manager- Then just follow the README to install other Node and npm versions...