Skip to content

Wie installiere ich Node.js auf Linux?

Linux

FAQ · Linux · Help & Support

21. Feb 2026 1 min

Node.js ist eine JavaScript-Laufzeitumgebung, die für Webanwendungen, APIs und Echtzeit-Applikationen verwendet wird. So installierst du die aktuelle LTS-Version:

Ubuntu/Debian (über NodeSource):
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install -y nodejs

Installation prüfen:
node --version
npm --version

Optionale Tools:
Für das Kompilieren nativer Addons installiere die Build-Tools:
sudo apt install -y build-essential

Tipp: Für die Verwaltung mehrerer Node.js-Versionen empfehlen wir nvm (Node Version Manager):
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
Anschließend:
nvm install --lts
nvm use --lts

Still have questions?

Our support team is happy to help - via ticket, email, or phone.