ionic start コトハジメということで ionic Framework でプロジェクトを作るときに選択したオプションをご紹介します。

ionic Framework を使う環境
今回 ionic Framework を使う環境は以下のとおりです。
# Node.js のインストール
nvm install v8.9.4 # LTS 最新推奨版
nvm use v8.9.4 |
# Node.js のインストール
nvm install v8.9.4 # LTS 最新推奨版
nvm use v8.9.4
npm install ionic cordova -g
# ionic -v
# 3.19.1
# cordova -v
# 8.0.0 |
npm install ionic cordova -g
# ionic -v
# 3.19.1
# cordova -v
# 8.0.0
ionic start で選択するオプション
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 |
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 |
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 |
Install the free Ionic Pro SDK and connect your app?
No
cd ./your-app
git remote add origin git@github.com:your-org/your-app.git
git push -u origin master |
cd ./your-app
git remote add origin [email protected]:your-org/your-app.git
git push -u origin master
以上、ionic Framework でモバイルアプリ開発をやっていきたい現場からお送りしました。