From 391ed177e087c79533e5c21b2027c4d363536c63 Mon Sep 17 00:00:00 2001 From: William Morriss Date: Fri, 27 Jul 2018 22:46:16 -0700 Subject: [PATCH] restore npm install instructions --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a1eda46c..95a6115e1 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,12 @@ If you're a web dapp developer, we've got two types of guides for you: ## Building locally - Install [Node.js](https://nodejs.org/en/) version 8.11.3 and npm version 6.1.0 + - If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you. + - Update npm to 6.1.0: ```npm install -g npm@6.1.0``` - Install dependencies: - - If you are using nvm (recommended) running `nvm use` will automatically choose the right node version for you. + ```bash +npm install + ``` - Install gulp globally with `npm install -g gulp-cli`. - Build the project to the `./dist/` folder with `gulp build`. - Optionally, to rebuild on file changes, run `gulp dev`.