NodeJS 14.x LTS auf Ubuntu in 1 Minute installieren

English Deutsch

Newer version 16 available: How to install NodeJS 16.x LTS on Ubuntu in 1 minute

Führe diese Shell-Befehle auf deinem Ubuntu-Computer aus, um NodeJS 14.x zu installieren:

install_nodejs_14.sh
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs

Anstelle von setup_14.x kannst du auch andere Versionen wie setup_12.x wählen. Mit dieser Methode kannst du jedoch nicht mehrere Versionen von NodeJS parallel installieren.

Source: Official nodesource documentation


Check out similar posts by category: Linux, NodeJS