From charlesreid1

Line 3: Line 3:
For some reason, no npm package is found.
For some reason, no npm package is found.


This script from Node should set itself up on debian (presumably): https://deb.nodesource.com/setup_0.12
From the nodejs docs, how to install on debian: https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions


<pre>
<pre>
curl --silent --location https://deb.nodesource.com/setup_0.12
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo ./https://deb.nodesource.com/setup_0.12
sudo apt-get update
sudo apt-get install -y nodejs
sudo apt-get install -y nodejs
sudo apt-get upgrade nodejs
</pre>
</pre>

Revision as of 00:37, 29 January 2018

installing on debian

For some reason, no npm package is found.

From the nodejs docs, how to install on debian: https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions

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