Skip to content

monaca-templates/ionic-angular-tabbar

Repository files navigation

Ionic 3 + Angular 5 template for Monaca

What is this?

Monaca is a cloud-based Cordova development platform. With this template, you can easily get started with Ionic hybrid app.

Using with Monaca Cloud IDE

  1. Open Terminal window by pressing (+) icon

  2. Run NPM install

$ npm install
  1. Run Ionic serve
$ npx ionic serve

Using with Command Line Tool

  1. Install Monaca & Ionic CLI
$ npm install -g monaca ionic
  1. Create a project using this template
$ monaca create myapp --url https://github.com/monaca-templates/ionic-angular-tabbar/archive/master.zip

Note: You'll be asked if you want to sync to Monaca Cloud. Press Y to continue.

  1. Chdir to the app dir & run npm install
$ cd myapp
$ npm install
  1. Use Ionic CLI to build (transpile) or serve
$ cd myapp
$ ionic serve
$ ionic build
  1. Use Monaca CLI to connect to debugger or perform remote build
# Start remote build
$ monaca remote build --browser

# Connect to Monaca debugger
$ monaca debug & ionic serve