Skip to content

Latest commit

 

History

History
executable file
·
33 lines (23 loc) · 530 Bytes

ionic-intro.md

File metadata and controls

executable file
·
33 lines (23 loc) · 530 Bytes

Ionic

1. Install Ionic

$ npm install -g cordova ionic

2. Start a project

$ ionic start myApp [blank/tabs/sidemenu]

3. Run it

$ cd myApp

# for web page
$ ionic serve

# building a mobile app and emulate
$ ionic platform add ios
$ ionic build ios
$ ionic emulate ios

# another way to build a mobile app and emulate
# ionic run