Last Updated: February 25, 2016
·
1.209K
· steveniseki

setup ionic on mac

This is a quick start guide to setting up an Ionic IOS app on a mac.

<b>Install node</b>

If you don't have node and npm installed, install from http://nodejs.org/

<b>Install cordova ionic and gulp</b>

npm install -g cordova ionic gulp

<b>Start up an Ionic app</b>

ionic start ionicTest tabs

<b>Install ios-simulator</b>

npm install ios-sim -g

<b>Add your platform</b>

jump into your ionicTests app, then add your platform

cd ionicTest\
ionic platform add ios

<b>Build and run your app</b>

ionic build ios
ionic emulate ios