Last active
April 16, 2018 15:31
-
-
Save olaferlandsen/dfea2ca397af198f78daaf52eaf21978 to your computer and use it in GitHub Desktop.
Install node & seting ionic on OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install nvm | |
mkdir ~/.nvm | |
export NVM_DIR="$HOME/.nvm" | |
. "/usr/local/opt/nvm/nvm.sh" | |
nvm install node // download, compile and install the latest version of node | |
// install cordova, ionic and typescript | |
npm install -g cordova ionic typescript | |
// setting ios envivorment | |
npm install -gf ios-deploy --unsafe-perm=true | |
npm install -g ios-sim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment