Commit 71e569a4 authored by D3m0nKingx's avatar D3m0nKingx Committed by GitHub

Added instructions for installing Nodejs/npm

Provide instructions for installation / update to latest version of Nodejs/npm on Ubuntu / Debian systems.
parent af2b39cd
......@@ -15,7 +15,21 @@ Navigate to the Breeze UI in a terminal:
cd ./Breeze/Breeze.UI
```
Install dependencies with npm:
## Install Nodejs (ver 8.x) and npm:
Using Ubuntu
`curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -`
`sudo apt-get install -y nodejs`
Using Debian, as root
`curl -sL https://deb.nodesource.com/setup_8.x | bash -`
`apt-get install -y nodejs`
## Update npm to newest version:
`sudo npm install npm@latest -g`
## Install dependencies with npm:
``` bash
npm install
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment