Ionic3 Project Types

These types can easily be checked by typing "ionic start --list" in the terminal or cmd.

These are the types that you can see when you run the above command.


Project 
Project_TYPE
Description
blank 
angular 
A blank starter project
sidemenu 
angular 
A starting project with a side menu with navigation in the content area
tabs 
angular 
A starting project with a simple tabbed interface
tabs 
ionic-angular 
A starting project with a simple tabbed interface
blank 
ionic-angular 
A blank starter project
sidemenu 
ionic-angular 
A starting project with a side menu with navigation in the content area
super 
ionic-angular 
A starting project complete with pre-built pages, providers and best practices for Ionic development.
tutorial 
ionic-angular 
A tutorial based project that goes along with the Ionic documentation
aws 
ionic-angular 
AWS Mobile Hub Starter
tabs 
ionic1 
A starting project for Ionic using a simple tabbed interface
blank 
ionic1 
A blank starter project for Ionic
sidemenu 
ionic1 
A starting project for Ionic using a side menu with navigation in the content area
maps 
ionic1 
An Ionic starter project using Google Maps and a side menu

This is how to build an ionic application using above commands.

ionic start <ANY_NAME> <Project> --type <Project_TYPE>


ANY_NAME: Any name for your application
Project : Any type from the Project column of the above table
Project_TYPE: Any type from the Project_TYPE column of the above table


As a example : ionic start MYAPP blank --type ionic-angular

Tip - most common ionic app build command is : ionic start

Comments

Popular posts from this blog

Getting Started With Ionic 5

How To Install Different Ionic versions in One Environment.