LinuxCommandLibrary

ionic

Develop, build, and run Ionic applications

TLDR

Create a new project

$ ionic start
copy

Start a local dev server for app dev/testing
$ ionic serve
copy

Generate new app component, directive, page, pipe, provider or tabs
$ ionic g [page]
copy

Run app on an Android/iOS device
$ ionic cordova run [android|ios] --device
copy

Check the health of an Ionic app
$ ionic doctor [check]
copy

Display versions of Ionic, Cordova, environment, etc.
$ ionic info
copy

SYNOPSIS

ionic [command] [options]
ionic [options]
ionic help [command]

PARAMETERS

--version, -v
    Display the Ionic CLI version.

--help, -h
    Display help for the command or a specific subcommand.

--verbose
    Enable verbose output, showing more details during execution.

--no-color
    Disable colored output in the terminal.

--confirm
    Prompt for confirmation before executing potentially destructive actions.

start