How do you uninstall node.js using the cmd line in linux?

link|improve this question

Which platform? – larsmans Apr 13 '11 at 13:36
feedback

4 Answers

up vote 24 down vote accepted

Run which node will return something like /path/bin/node.

Run cd /path

This is all that is added by Node.JS.

rm -r bin/node bin/node-waf include/node lib/node lib/pkgconfig/nodejs.pc share/man/man1/node.1

Now the only thing I don't know about is npm and what it has installed. If you install npm again into a custom path that starts off empty, then you can see what it adds and then you will be able to make a list for npm similar to the above list I made for node.

link|improve this answer
2  
Thank you! was finally able to remove an older version I had and replace it. – Loktar Jul 29 '11 at 15:49
feedback

If you installed from source, you can issue the following command:

sudo make uninstall

If you followed the instructions on https://github.com/joyent/node/wiki/Installation to install to your $HOME/local/node, then you have to type the following before the line above:

./configure --prefix=$HOME/local/node
link|improve this answer
will that remove npm and its installs? – abe Apr 13 '11 at 13:46
Probably not. You are better off running npm uninstall npm to uninstall npm prior to uninstalling node. – Justin Ethier Apr 13 '11 at 13:48
thats really odd it seemed to uninstall a bunch of files said it uninstalled but when i type node it still enters node mode...i rebooted the server to in case it was in ram – abe Apr 13 '11 at 14:20
Hmm... do you have to specify an installation prefix, to uninstall a version in a custom place such as your local home directory? – Justin Ethier Apr 13 '11 at 14:29
duno will check...cheers – abe Apr 13 '11 at 14:54
feedback

To uninstall node I followed the accepted answer by @George, as I no longer have the sources, but before doing so I ran:

sudo npm rm npm -g

That seemed to get rid of npm from the system directories such as /usr/bin/npm and /usr/lib/npm. I got the command from here. I then found a ~/.npm directory, which I deleted manually. Honestly I don't know if every trace of npm has been removed, but I can't find anything else.

link|improve this answer
feedback

if you want to just update node, there's a neat updater too

https://github.com/creationix/nvm

to use,

git clone git://github.com/creationix/nvm.git ~/.nvm

. ~/.nvm/nvm.sh

nvm install v0.4.1

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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