Last active
November 4, 2016 08:25
-
-
Save mhmoudsami/6dd307d11eb61d16400c777d71a87ded to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # install | |
| $ sudo npm install -g cordova ionic | |
| # create new project | |
| ionic start todo blank | |
| ionic start todo tabs | |
| ionic start todo sidemenu | |
| # add new platform | |
| ionic platform add ios | |
| ionic platform add android | |
| # build platform | |
| ionic build ios | |
| ionic build android | |
| # run emalutor | |
| ionic emulate ios | |
| ionic emulate android | |
| # serve project | |
| ionic serve --lab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment