Ionic is a framework for developing mobile applications with HTML, CSS, and JavaScript. Ionic applications run as native applications and have a native "look and feel".
Ionic is built on the AngularJS framework and provides a complete solution to design, build, and package mobile applications. Design is accomplished with a collection of template tools and a custom icon library. Ionic provides custom CSS/SASS components as well as Javascript UI Extensions. Ionic apps can be built, emulated, and packaged with their Command Line Interface (CLI).
Ionic templates are dynamic and responsive and adapt to their environment to provide a native "look and feel". This adaptation includes layout, style, and icons. Ionic makes independent platform customization available as well. Because Ionic apps use front end web technology, they can also be viewed in a browser for faster development.
Ionic apps are built on top of Apache Cordova by default. They have access to all Cordova Plugins which let you use native functionality, such as push notifications, camera, accelerometer, etc. Cordova apps work on multiple platforms and devices (phones, tablets, etc.) with very little extra effort. Cordova may be switched out with other cross-platform technologies such as trigger.io.
Version | Release Date |
---|---|
1.3.1 "el salvador" | 2016-05-12 |
1.3.0 "delhi" | 2016-04-21 |
1.2.0 "zirconium-zeren" | 2015-12-09 |
1.1.0 "xenon-xerus" | 2015-08-13 |
1.0.0 "uranium-unicorn" | 2015-05-12 |
Make sure you have an up-to-date version of Node.js installed on your system. If you don't have Node.js installed, you can install it from here.
Also, for Mac users, having the latest Xcode version installed on your system brings to you command-line-tools and iOs Simulator, download here.
Open a terminal window (Mac) or a command window (Windows), and install Cordova and Ionic:
$ npm install -g cordova ionic
On a Mac, you may have to use sudo depending on your system configuration:
$ sudo npm install -g cordova ionic
If you already have Cordova and Ionic installed on your computer, make sure you update to the latest version:
$ npm update -g cordova ionic
or
$ sudo npm update -g cordova ionic
Follow the Android and iOS platform guides to install required platform dependencies.
Note: iOS development requires Mac OS X. iOS simulator through the Ionic CLI requires the ios-sim npm package, which can be installed with the command:
$ sudo npm -g install ios-sim
Create an Ionic project using one of the ready-made app templates, or a blank one to start fresh.
$ ionic start myApp blank
or
$ ionic start myApp tabs
or
$ ionic start myApp sidemenu
To test your Ionic app in a desktop browser on both iOS and Android platforms:
$ ionic serve --lab
Whereas ionic serve --lab
is great to test the app UI on multiple platforms it could lead to some problems for Javascript Console or Element Inspection, in that case what you may prefer:
$ ionic serve
To test your Ionic app in an emulator:
$ cd myApp
$ ionic platform add ios android
$ ionic build ios
$ ionic emulate ios
Substitute ios with android for Android emulator testing:
$ ionic build android
$ ionic emulate android
To test your Ionic app in an Android device connected via USB:
$ ionic run android
To test your Ionic app in an iOS device connected via USB:
$ ionic run ios --device
After All the setup, To make Hello World App
ionic start HelloWorld blank // create new project
cd HelloWorld // get into HelloWorld directory
<body ng-app="starter">
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Ionic Hello World App</h1>
</ion-header-bar>
<ion-content>
<div class="center">Hello World..!</div>
</ion-content>
</ion-pane>
</body>
ionic serve // run the app in browser
ionic platform add android // add android platform
ionic platform add ios // add ios platform
adb devices // to check devices is connected
ionic run android // to run on android devices
ionic run ios // to run on ios devices
ionic run android -c -s -l // to check app in live reload with console.
Ionic Framework
A Cross-platform mobile application development framework using Angular JS and Front End web technologies.
Official website: http://ionicframework.com/
Documentation: http://ionicframework.com/docs/
Installation and Setup
Installation Ionic required NPM(Node Package Manager) and Cordova.
You can download and install Npde JS from here which comes with NPM out of the Box.
To download Apache Cordova you can use NPM from command line
npm install -g cordova
If you already have NPM and Cordova then you can install ionic framework from Command line using following command.
npm install -g ionic
This will install and setup ionic framework for you to use it from command line.
Note* Based on your system environment you might need to execute with Admin privileges.
Starting A New Project
To Start a new Ionic Framework Project you can use following command
ionic start myproject
or
ionic start myproject [template_name]
Templates:
Ionic allows You to create project using some built in templates
tabs
(default): which will create a simple app with tab view.
sidemenu
: which will create ionic app with side menu.
blank
: which will create a blank ionic app.
which will create a new folder named myproject
with all the ionic project files.
to test project in your browser you can use following command
ionic serve --lab
or
ionic serve
Run an Emulate To execute or test app on emulator or phone first you will have to add platform for that you can use following command
ionic platform [Platform Name]
ionic build [Platform Name]
ionic emulate [platform name]
Platform Names you can directly mention android and ios for respective Platforms you can mention multiple platform names also separated by space.
To run your app you can use
ionic run [platform name]
For help you can use
ionic --help
or
ionic help
Refer this link for detailed explanation of ionic cli.
Refer this link for CSS components available in ionic.
Refer this link for Javascript API reference for ionic.
For quicker development with ionic you can try ionic Playground also.
Best of luck with ionic framework...
Title Description:
The Ionic Platform is a cloud platform for managing and scaling cross-platform mobile apps. Integrated services enable you and your team to build, deploy, and grow your apps efficiently.
Document Objective:
Ionic Platform works well with the standard Ionic projects. But projects following any Non-standard Directory Structure may face a few hurdles. This documents provides the steps to use Ionic Platform in the Ionic projects created using Yeoman.
Document Scope:
This document covers the basic steps for creating an Ionic project using Yeoman and integrating it with Ionic Platform using the Ionic Platform Web Client. This document covers the basic steps to utilize Ionic Deploy, Ionic Analytics and Ionic Push.
Intended Audience:
The intended audience for this document is Web/Mobile App developers, with both beginner and expert level expertise, who are familiar with the below Prerequisites.
Prerequisites:
You should be familiar with the following frameworks/tools before trying this document.
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. npm is the package manager for JavaScript. Download and install Node (and npm) from http://nodejs.org
$ npm install npm –g
$ npm install -g yo
Yeoman helps you to kick-start new projects, prescribing best practices and tools to help you stay productive.
$ yo ionic [app-name]
In package.json include the following in devDependencies
"grunt-string-replace": "^1.2.1"
In bower.json include the following in dependencies
"ionic-platform-web-client": "^0.7.1"
In Gruntfile.js change the scripts folder to ‘js’. Change in index.html too if required.
grunt.initConfig({ yeoman: {…………
scripts: 'js',
………… } })
Then run
$ bower install && npm install
$ grunt
$ grunt serve
$ cordova platform add android
$ grunt build:android --debug
We need some code to let your app talk to the Ionic Platform. We need to add the Ionic platform web client for the Ionic app to interface with the plugins and the Ionic.io platform.
$ ionic io init
In your app.js add the ‘ionic.service.core’ module dependency. In Gruntfile.js add the grunt task ‘ionicSettings’ as given below.
grunt.initConfig({
ionicSettings: JSON.stringify(grunt.file.readJSON('./.io-config.json')),
ionicIoBundlePath: 'www/bower_components/ionic-platform-web-client/dist/ionic.io.bundle.min.js',
'string-replace': {
ionicSettings: {
files: {
'<%= ionicIoBundlePath %>': '<%= ionicIoBundlePath %>',
},
options: {
replacements: [
{
pattern:
'"IONIC_SETTINGS_STRING_START";"IONIC_SETTINGS_STRING_END"',
replacement:
'"IONIC_SETTINGS_STRING_START";var settings =<%= ionicSettings %>; return { get: function(setting) { if (settings[setting]) { return settings[setting]; } return null; } };"IONIC_SETTINGS_STRING_END";'
}
]
}
}
},
copy: {
ionicPlatform:{
expand: true,
cwd: 'app/bower_components/ionic-platform-web-client/dist/',
src: ['**'],
dest: 'www/bower_components/ionic-platform-web-client/dist'
}
}
});
grunt.registerTask('ionicSettings', ['copy:ionicPlatform','string-replace:ionicSettings']);
Add the 'ionicSettings' in init and compress tasks after copy. In index.html move the below tag after all the tag declarations.
<script src="bower_components/ionic-platform-web-client/dist/ionic.io.bundle.min.js"></script>
Then run
$ Grunt serve
Ionic Deploy lets you update your app on demand, for any changes that do not require binary modifications, saving you days, or even weeks, of wait time. Follow the below procedure to configure Ionic Deploy for your App.
In Gruntfile.js add the grunt task ‘deploy’ as given below.
grunt.registerTask('deploy', function () {
return grunt.task.run(['init', 'ionic:upload' + this.args.join()]);
});
then run
$ ionic plugin add ionic-plugin-deploy
Ionic Deploy Code:
var deploy = new Ionic.Deploy();
// Check Ionic Deploy for new code
deploy.check().then(function(hasUpdate) {
}, function(err) {
});
// Update app code with new release from Ionic Deploy
deploy.update().then(function(result) {
}, function(error) {
}, function(progress) {
});
Deploying Updates:
Send out new code for your app.
Create an apk and install your app. Make few changes in your code and deploy the changes using 'grunt deploy'. Then update it from your app.
You can also deploy it from the apps.ionic.io dashboard. You can deploy the app without the deploy parameter. Then, in the dash board you can add the metadata and versioning details and deploy the app from there.
$ grunt build:android --debug
$ grunt deploy --note "release notes"
$ grunt deploy --note "release notes" --deploy=production
How many users are on your app right now? How many of those will use your app tomorrow, or next week? Without information, you have no way of telling if your app is being used in the ways that you expect. Follow the below procedure to configure Ionic Analytics for your App.
In your app.js add the ‘ionic.service.analytics’ module dependency after the ionic.service.core Run the analytics register method in our module's run function.
$ionicAnalytics.register();
In Ionic Analytics, each tracked action a user makes in your app is represented by an event object. An event is a single action done at a specific point in time. To track your own events, call $ionicAnalytics.track(eventType, eventData)
whenever an action occurs.
$ionicAnalytics.track('User Login', {
user: $scope.user
});
The ion-track-tap directive sends an event when its host element is tapped. The associated ion-track-data directive attaches event data.
<button ion-track-tap="eventType" ion-track-data="expression"></button>
In the apps.ionic.io dashboard you can view the following analytics data,
Events: View the raw number of events over time, or the number of unique users who completed an event. An event can be anything from a user loading the app, to confirming a purchase.
Funnels: A funnel is a sequence of actions that you expect users to take in your app, leading up to a defined goal. Thoughtful use of funnels will let help you improve conversion rates.
Segments: View events over time, grouped by a specified property. Or, calculate the percentage of events that match a given property. Segments helps you understand your user base and see how properties change over time.
Retention: Track how long users are active on your app before they stop using it. Or, identify how long it takes for users to reach a defined goal, like a completed sale.
Pulse: A live feed of events coming in from your users.
Ionic Push lets you create targeted push notifications through a simple dashboard that will be sent automatically when users match specific criteria, and offers a simple API to send push notifications from your own servers.
Android Push Profiles:
Android push notifications use the Google Cloud Messaging (GCM) service. Open the Google Developers Console and create a project. Copy down your project number. This will be the GCM sender ID or GCM Project Number.
In the API Manager section, enable the Google Cloud Messaging API. Then navigate to Credentials section and select Create credentials, then choose API Key, then Server Key. Name your API key and leave the Accept requests from... field blank and click Create. Save your API key!
Authentication:
Go to your app's dashboard on the Ionic Platform and navigate to Settings -> Certificates. If you haven't already, create a new security profile, then hit edit. Note down the Profile Tag.
Now, click the Android tab and find the section marked Google Cloud Messaging, enter the API Key you generated on the Google Developer Console, then click Save. Go to Settings -> API Keys. Under API Tokens, create a new token and copy it. This will your API Token.
$ ionic plugin add phonegap-plugin-push --variable SENDER_ID="GCM_PROJECT_NUMBER"
$ ionic config set gcm_key <your-gcm-project-number>
$ ionic config set dev_push false
$ ionic io init
Note: phonegap-plugin-push requires Android Support Repository version 32+
In your app.js add the ‘ionic.service.push’ module dependency after the ionic.service.core
Ionic Push Code:
Initialize the service and register your device in your module's run function. You'll need the device token that is registered by the user for sending notification to the user.
$ionicPush.init({
debug: true,
onNotification: function (notification) {
console.log'token:', notification.payload);
},
onRegister: function (token) {
console.log('Device Token:', token);
$ionicPush.saveToken(token); // persist the token in the Ionic Platform
}
});
$ionicPush.register();
then run
$ grunt build:android --debug
Ionic Push lets you create targeted push notifications through the dashboard. You can also send notifications from the server in the below format.
curl -X POST -H "Authorization: Bearer API_TOKEN" -H "Content-Type: application/json" -d '{
"tokens": ["DEVICE_TOKEN"],
"profile": "PROFILE_TAG",
"notification": {
"message": "Hello World!"
"android": {
"title": "Hi User",
"message": "An update is available for your App",
"payload": {
"update": true
}
}
} }' "https://api.ionic.io/push/notifications"
Note: The steps to configure Ionic Push for iOS is the same except for creating the Push Profiles. To create iOS push profiles refer http://docs.ionic.io/v2.0.0-beta/docs/ios-push-profiles
A Sample app is attached here for reference.
IonicApp:
│
│ bower.json
│ Gruntfile.js
│ package.json
│
└───app
│ index.html
│
├───js
│ app.js
│ controllers.js
│
└───templates
home.html
menu.html
Note: This is not a standalone project. The code given is only for comparison against a project created and implemented using the procedures given above in this document, in case of any issues or errors.