Skip to main content

Install Node.js Development Environment

  1. Install git
    sudo pacman -S git
    
  2. Install Visual Studio Code
    pamac build visual-studio-code-bin
    
  3. Install Node Version Manager using curl or wget, whichever is available
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
    
    wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
    
  4. Install Node.js, e.g. version 12
    nvm install 12