Useful snippets

    Uninstall node & reinstall with nvm

    Node uninstall

    sudo apt-get remove nodejs
    sudo apt-get remove npm
    rm -rf ~/.npm
    rm -rf ~/.node

    https://stackoverflow.com/questions/32426601/how-can-i-completely-uninstall-nodejs-npm-and-node-in-ubuntu

    Confirm uninstallation

    node --version

    Nvm install

    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

    Quit WSL

    Reopen

    nvm install 20
    nvm use 20

    Confirm version

    node --version