Useful snippets

    Uninstall node & reinstall with nvm

    2024-02-17

    Node uninstall

    sudo apt-get remove nodejs
    sudo apt-get remove npm

    Kanskje:

    sudo apt autoremove
    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.5/install.sh | bash

    https://www.nvmnode.com/guide/download.html

    Quit WSL

    Reopen

    nvm install 24

    Latest Node version: https://nodejs.org/en/download

    nvm use 20

    Confirm version

    node --version