diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-12 16:17:34 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-12 16:18:14 +0200 |
commit | d785f11d117ab731d93d438d52cfd92476e0a870 (patch) | |
tree | ab024921dd5c9e4f066594062fcf20b73906a73e /docs/part-2/1_xds-server.md | |
parent | cda992c2f700f597947be9c03a66f6bd4fe70bdd (diff) |
Add nodejs dependency
Diffstat (limited to 'docs/part-2/1_xds-server.md')
-rw-r--r-- | docs/part-2/1_xds-server.md | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/part-2/1_xds-server.md b/docs/part-2/1_xds-server.md index 110ee06..6fc5779 100644 --- a/docs/part-2/1_xds-server.md +++ b/docs/part-2/1_xds-server.md @@ -192,19 +192,24 @@ See also `xds-agent` [README file](https://github.com/iotbzh/xds-agent) for more - Install and setup [Go](https://golang.org/doc/install) version 1.7 or higher to compile this tool. - Install [npm](https://www.npmjs.com/) - Install [gulp](http://gulpjs.com/) +- Install [nodejs](https://nodejs.org/en/) Ubuntu: ```bash - sudo apt-get install golang npm curl git zip - sudo npm install -g gulp-cli + sudo apt-get install golang npm curl git zip unzip + sudo npm install -g gulp-cli n + # Install LTS version of nodejs + sudo n lts ``` openSUSE: ```bash - sudo zypper install go npm git curl zip - sudo npm install -g gulp-cli + sudo zypper install go npm git curl zip unzip + sudo npm install -g gulp-cli n + # Install LTS version of nodejs + sudo n lts ``` Don't forget to open new user session after installing the packages. |