diff options
author | William Morriss <wjmelements@gmail.com> | 2018-07-31 09:04:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 09:04:21 +0800 |
commit | 2cefab544d4ed24788dc09e7d7b527655676c2c1 (patch) | |
tree | f7660f7ce01a8b97fbe4e67d29977131de2fb5ca | |
parent | fa4423bab2886017996955f809b6e3102cbf1781 (diff) | |
parent | cfb74680e26bd287a1ac2e3cc4bebddb23136a4e (diff) | |
download | tangerine-wallet-browser-2cefab544d4ed24788dc09e7d7b527655676c2c1.tar.gz tangerine-wallet-browser-2cefab544d4ed24788dc09e7d7b527655676c2c1.tar.zst tangerine-wallet-browser-2cefab544d4ed24788dc09e7d7b527655676c2c1.zip |
Merge pull request #4908 from MetaMask/npm-install
Restore npm install instructions to README
-rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -27,8 +27,9 @@ 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 - - Install dependencies: - - If you are using nvm (recommended) running `nvm use` will automatically choose the right node version for you. + - If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you. + - Select npm 6.1.0: ```npm install -g npm@6.1.0``` + - Install dependencies: ```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`. |