diff --git a/wiki/software-installation/debian-nodejs-installieren.md b/wiki/software-installation/debian-nodejs-installieren.md new file mode 100644 index 0000000..5cc2e11 --- /dev/null +++ b/wiki/software-installation/debian-nodejs-installieren.md @@ -0,0 +1,24 @@ +--- +id: debian-nodejs-installieren +title: Node JS installieren (Debian based distros) +sidebar_label: 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 und Root Rechte. +Melde dich zunächst als root mit dem SSH Client deiner Wahl an, z.B. PuTTY, Termius oder Tabby. Vorraussetzungen für diese Anleitung sind, dass curl sowie sudo installiert sind. + + + +### Installation +1. Als erstes fügst du die offiziellen Node JS Paketquellen hinzu: + + ```sh + curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash - + ``` +2. Nun updatest du deine paketquellen und installierst Node JS. + + ```sh + sudo apt-get update && sudo apt-get install nodejs + ``` \ No newline at end of file