Getting started with ionic start

Tadashi Shigeoka ·  Thu, February 15, 2018

As a getting started with ionic start, I’ll introduce the options I selected when creating a project with the Ionic Framework.

Ionic Framework | アイオニック フレームワーク

Environment for using Ionic Framework

The environment for using Ionic Framework this time is as follows.

# Install Node.js
nvm install v8.9.4 # Latest LTS recommended version
nvm use v8.9.4
npm install ionic cordova -g
# ionic -v
# 3.19.1

# cordova -v
# 8.0.0

Options to select with ionic start

ionic start your-app
What starter would you like to use:
  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. 
  conference ......... ionic-angular A project that demonstrates a realworld application 
  tutorial ........... ionic-angular A tutorial based project that goes along with the Ionic documentation 
  aws ................ ionic-angular AWS Mobile Hub Starter 
Would you like to integrate your new app with Cordova to target native iOS and Android?
Yes
Install the free Ionic Pro SDK and connect your app?
No
cd ./your-app
git remote add origin [email protected]:your-org/your-app.git
git push -u origin master

That’s all from the Gemba where I want to develop mobile apps with Ionic Framework.