nvm-uninstall

Installation
SKILL.md

Uninstall nvm

Completely remove nvm and restore the system to its pre-nvm state.

Workflow

  1. Remove the nvm directory:

    rm -rf "$NVM_DIR"
    # Usually: rm -rf ~/.nvm
    
  2. Remove nvm lines from shell profile (~/.bashrc, ~/.zshrc, or ~/.profile):

    # Delete these lines from your profile:
    # export NVM_DIR="$HOME/.nvm"
    # [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
    # [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
    
Installs
1
GitHub Stars
466
First Seen
Apr 6, 2026
nvm-uninstall — teachingai/full-stack-skills