forked from Conan_Doyl/Wiki
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.
24 lines
874 B
24 lines
874 B
3 years ago
|
---
|
||
|
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
|
||
|
```
|