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.
23 lines
797 B
23 lines
797 B
--- |
|
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, 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: |
|
|
|
```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 |
|
``` |