forked from Conan_Doyl/Wiki
parent
38980fb230
commit
200fe1059b
1 changed files with 24 additions and 0 deletions
@ -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 |
||||
``` |
Loading…
Reference in new issue