1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:02:08 +02:00
tldr/pages/common/ionic.md
2019-06-05 23:42:48 -03:00

28 lines
521 B
Markdown

# ionic
> A framework to build hybrid mobile apps.
> More information: <https://ionicframework.com/docs/cli>.
- Create a new project:
`ionic start`
- Start a local dev server for app dev/testing:
`ionic serve`
- Generate new app component, directive, page, pipe, provider or tabs:
`ionic g {{page}}`
- Show versions of ionic, cordova, environment, etc.:
`ionic info`
- Run app on an android/ios device:
`ionic cordova run {{android|ios}} --device`
- Check the health of a ionic app:
`ionic doctor {{check}}`