You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

797 B

id title sidebar_label
debian-nodejs-installieren Node JS installieren (Debian based distros) Node JS installieren

Installation von Node JS auf Linux Debian Server

Informationen

In diesem Tutorial wird dir gezeigt, wie du Node JS auf einem VPS, root oder Dedicated Server installierst. Du benötigst dafür eine beliebige Debian basierende distro, curl und Root Rechte. Melde dich zunächst als root mit dem SSH Client deiner Wahl an, z.B. PuTTY, Termius oder Tabby.

Installation

  1. Als erstes fügst du die offiziellen Node JS Paketquellen hinzu:

    curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
    
  2. Nun updatest du deine Paketquellen und installierst Node JS.

    sudo apt-get update && sudo apt-get install nodejs