Category: Node.js

  • Install Node JS LTS on Ubuntu LTS with NVM

    sudo apt update -y
    Bash
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
    Bash
    source ~/.profile
    nvm install --lts
    nvm use --lts
    Bash