Node.js und npm: Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „== Allgemein == '''npm''' wird automatisch mit '''Node.js''' mit installiert. === Installation === Von [https://nodejs.org/en/ https://nodejs.org/en/] den L…“)
 
 
(4 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>
wget https://nodejs.org/dist/v10.3.0/node-v10.3.0-linux-x64.tar.xz
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
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