Merge branch '247-improve-node-install-instructions' into 'master'
Directly include instructions for Node v9 installation in readme, fix #247 Closes #247 See merge request bloodyhealth/drip!113
This commit is contained in:
@@ -14,7 +14,13 @@ A menstrual cycle tracking app that's open-source and leaves your data on your p
|
||||
cd drip
|
||||
```
|
||||
|
||||
4. Make sure you are running Node 8 or 9. It's easiest to switch Node versions using `nvm`. Here's [how to set it up](https://nodesource.com/blog/installing-node-js-tutorial-using-nvm-on-mac-os-x-and-ubuntu/)
|
||||
4. Make sure you are running Node 8 or 9 (newer versions won’t work). It's easiest to switch Node versions using `nvm`, here’s how to do it:
|
||||
|
||||
```
|
||||
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
|
||||
nvm install v9
|
||||
```
|
||||
|
||||
5. Run `npm install`
|
||||
5. You may need to open your app's /android folder in Android Studio, so that it detects, downloads and cofigures requirements that might be missing, like the NDK and CMake to build the native code part of the project. Also check out nodejs-mobile repository for the necessary prerequisites for your system.
|
||||
5. Run `npm run android`
|
||||
|
||||
Reference in New Issue
Block a user