Scaffolding
Once an app is created by the Ionic CLI, the next step is to start building out features and components. The majority of the app will be developed in the src/app/
directory.
#
Project StructureThe src/
directory has items such as the index.html
file, configuration files for tests, an asset folder for images, and the main app/
directory for the app's code.
The src/app/
directory contains the root app component and module as well as additional directories that contain app features such as pages, components, services, etc.
#
Generating New FeaturesThe Ionic CLI can generate new app features with the ionic generate
command. By running ionic generate
in the command line, a selection prompt is displayed which lists the available features that can be generated.
After a selection is made, the Ionic CLI will prompt for a name. The name can be a path, allowing easy generation of features within an organized project structure.
Any level of nesting is allowed, such as
portfolio/intro
. You can easily scope components to pages by usingionic g component "portfolio/intro/About Me"
, for example.
Alternatively, the type
and name
of the generated feature can be entered on the command line:
The Ionic CLI uses the underlying framework tooling to stay close to best practices. For @ionic/angular
, the Angular CLI is used under the hood.
After creating the files and directories for the new page, the CLI will also update the router configuration to include the new page. This reduces the amount of manual work needed to keep the development lifecycle moving.
For more details, run ionic g --help
from the command line or see the documentation for ionic generate
.