Node.js und npm: Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 5: Zeile 5:
=== Installation ===
=== Installation ===


Von [https://nodejs.org/en/ https://nodejs.org/en/] den Link zur aktuellsten Version besorgen und per '''wget''' herunterladen:
==== Ubuntu ====
 
Auf [https://github.com/nodesource/distributions#debinstall https://github.com/nodesource/distributions#debinstall] die aktuelle Version herausfinden und intallieren:


<pre>
<pre>
Zeile 11: Zeile 13:
sudo apt-get install -y nodejs
sudo apt-get install -y nodejs
</pre>
</pre>
==== Windows ====
Download: [https://nodejs.org/en/download/ https://nodejs.org/en/download/]


=== Link ===
=== Link ===

Aktuelle Version vom 16. Juli 2018, 13:14 Uhr

Allgemein

npm wird automatisch mit Node.js mit installiert.

Installation

Ubuntu

Auf https://github.com/nodesource/distributions#debinstall die aktuelle Version herausfinden und intallieren:

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

Windows

Download: https://nodejs.org/en/download/

Link

https://nodejs.org/en/

https://www.npmjs.com/


Zurück zu JavaScript