Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

  • Installieren Sie node.js, falls es nicht vorhanden ist (wir empfehlen hierfür baboonstack)
Codeblock
themeEmacs
languagebash
titleManuelle Installation von node.js
collapsetrue
## debian (als root):
apt-get install curl
curl -sL https://deb.nodesource.com/setup | bash -
apt-get install nodejs
 
## ubuntu, linux mint, ecta
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install nodejs
 
## Für andere Distributionen bitte hier nachschauen:
https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager

...