Horje
nvm uninstall node Code Example
uninstall node js from mac
sudo rm -rf ~/.npm ~/.nvm ~/node_modules ~/.node-gyp ~/.npmrc ~/.node_repl_history
sudo rm -rf /usr/local/bin/npm /usr/local/bin/node-debug /usr/local/bin/node /usr/local/bin/node-gyp
sudo rm -rf /usr/local/share/man/man1/node* /usr/local/share/man/man1/npm*
sudo rm -rf /usr/local/include/node /usr/local/include/node_modules
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /usr/local/lib/dtrace/node.d
sudo rm -rf /opt/local/include/node /opt/local/bin/node /opt/local/lib/node
sudo rm -rf /usr/local/share/doc/node
sudo rm -rf /usr/local/share/systemtap/tapset/node.stp

brew uninstall node
brew doctor
brew cleanup --prune-prefix
remove nvm version
$ nvm uninstall 8.8.1
how to remove nvm
Essentially you'd need to reverse the steps in install.sh - remove any nvm lines from ~/.bash_profile (and/or ~/.profile), rm -rf ~/.nvm, and either reopen your shell, or re-source your bash profile.

However, simply removing the nvm commands from your .bash_profile or .profile should be more than sufficient.

someone else said this:

rm -rf ~/.nvm
rm -rf ~/.npm
rm -rf ~/.bower
Source: github.com
uninstall node package
npm uninstall <package_name>
uninstall node
In IOS terminal:
brew uninstall node

Use sudo if ask for permitions
nvm uninstall node
// Removing Manually if nvm still gives the same list of installed versions as before

cd ~/.nvm/versions/node
sudo rm -rf v4.2.3/




Shell

Related
remove inkscape Code Example remove inkscape Code Example
rstudio find out if package is installed Code Example rstudio find out if package is installed Code Example
how can i solve my problems? Code Example how can i solve my problems? Code Example
command for removing installed applications in linux Code Example command for removing installed applications in linux Code Example
git change commit message for merge Code Example git change commit message for merge Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10