Node.js und npm: Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 4: Zeile 4:


=== Installation ===
=== Installation ===
==== Ubuntu ====


Auf [https://github.com/nodesource/distributions#debinstall https://github.com/nodesource/distributions#debinstall] die aktuelle Version herausfinden und intallieren:
Auf [https://github.com/nodesource/distributions#debinstall https://github.com/nodesource/distributions#debinstall] die aktuelle Version herausfinden und intallieren:
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 ===

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