ionic3 Getting started with ionic3

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

This section provides an overview of what ionic3 is, and why a developer might want to use it.

It should also mention any large subjects within ionic3, and link out to the related topics. Since the Documentation for ionic3 is new, you may need to create initial versions of those related topics.

Installation or Setup

In this version change, Ionic has upgraded to Angular 4, a most recent version of TypeScript and some structural changes but starting an ionic project continues being similar to Ionic 2 so if you need more detailed information you could refer to that doc:

Ionic 2 Stack Overflow doc: Getting started with ionic2

Ionic official doc: http://ionicframework.com/getting-started

Starting up Ionic 3 project

Make sure you have the lastest version of Ionic:

npm install -g ionic@latest
 

After that you can start your Ionic 3 project:

ionic start
 

It will prompt you the name of the project and what type of Ionic Application you want to create, It also have some example projects.

If you don't want to initialize a git repo for the project, you have to use ionic start with the parameter --no-git

ionic start --no-git
 

To test the application you can run the following command:

ionic serve --lab
 

It will simulate the application in your default web browser.



Got any ionic3 Question?