Reinstall Node.js

node.js

What's the best way to reinstall node.js?

Best Answer

If you've already installed node, then add a a make uninstall in there too as the first step. So make uninstall; make clean; make; make install; should do it. Note that this has to be run from the source directory for the nodejs version you currently have installed.

Related Topic