Directly include instructions for Node v9 installation in readme, fix #247

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt
2018-11-29 10:27:27 +01:00
parent 75ef151098
commit ffe9141bc4
+7 -1
View File
@@ -14,7 +14,13 @@ A menstrual cycle tracking app that's open-source and leaves your data on your p
cd drip 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 wont work). It's easiest to switch Node versions using `nvm`, heres 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. 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. 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` 5. Run `npm run android`