Commit 7dbd0f77 authored by D3m0nKingx's avatar D3m0nKingx Committed by GitHub

Added instructions for Nodejs/npm installation

Added/cleaned up instructions for nodejs/npm installation/update
parent 71e569a4
...@@ -19,18 +19,28 @@ cd ./Breeze/Breeze.UI ...@@ -19,18 +19,28 @@ cd ./Breeze/Breeze.UI
Using Ubuntu Using Ubuntu
`curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -` `curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -`
`sudo apt-get install -y nodejs` `sudo apt-get install -y nodejs`
Using Debian, as root Using Debian, as root
`curl -sL https://deb.nodesource.com/setup_8.x | bash -` `curl -sL https://deb.nodesource.com/setup_8.x | bash -`
`apt-get install -y nodejs` `apt-get install -y nodejs`
## Update npm to newest version: ## Install/Update Nodejs/npm to stable/latest release version:
`sudo npm install npm@latest -g` `sudo npm install npm@latest -g`
`sudo npm install n -g`
`sudo n stable`
*To install the latest release, use `n latest`. Alternatively, you can run n #.#.# to get a specific Node version.
## Install dependencies with npm: ## Install dependencies with npm:
From within Breeze.UI directory run:
``` bash ``` bash
npm install 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