Ionic (mobile app framework)

Ionic
Developer(s) Drifty[1][2]
Initial release 2013 (2013)
Preview release
1.3.1 "el salvador"[3] / April 21, 2016 (2016-04-21)
Repository github.com/driftyco/ionic
Development status Active
Written in JavaScript
Type Software framework
License MIT License
Website ionicframework.com

Ionic is a complete open-source SDK for hybrid mobile app development.[4] Built on top of AngularJS and Apache Cordova, Ionic provides tools and services for developing hybrid mobile apps using Web technologies like CSS, HTML5, and Sass. Apps can be built with these Web technologies and then distributed through native app stores to be installed on devices by leveraging Cordova. Ionic was created by Max Lynch, Ben Sperry, and Adam Bradley of Drifty Co. in 2013.

History

Ionic was created by Drifty Co. in 2013. Drifty's prior products include Codiqa and Jetstrap, drag-and-drop interface building tools using jQuery Mobile and Bootstrap. Taking feedback from customers who tried to build mobile apps, the team decided to build their own framework that would focus on performance and be built with modern Web standards. After releasing an alpha version of the framework in November 2013, a 1.0 beta was released in March 2014, with a 1.0 final in May 2015.

In 2015 Ionic developers reportedly created over 1.3M apps with the SDK.[5]

Services & features

Ionic provides all the functionality that can be found in native mobile development SDKs. Users can build their apps, customize them for Android or iOS, and deploy through Cordova. Ionic includes mobile components, typography, interactive paradigms, and an extensible base theme.

Using Angular, Ionic provides custom components and methods for interacting with them. One such component, collection repeat, allows users to scroll through a list of thousands of items without any performance hits. Another component, scroll-view, creates a scrollable container with which users can interact using a native-influenced delegate system.

<ion-content>
</ion-content>

Developers can programmatically control the scroll-view to get the scroll position, scroll to bottom/top, zoom, or get information about the current scroll-view instances.

$ionicScrollDelegate.scrollTop();
$ionicScrollDelegate.scrollBottom();
$ionicScrollDelegate.zoomTo(1.5);
$ionicScrollDelegate.getScrollView();

Besides the SDK, Ionic also provides services that developers can use to enable features, such as push notifications, A/B testing, analytics, code deploys, and automated builds.

Ionic also provides a powerful command-line interface (CLI), so developers can get started and create a project with a simple command. The CLI also allows developers to add Cordova plugins and additional front-end packages, enable push notifications, generate app Icons and Splash screens, and build native binaries.

Supported platforms

Ionic is focused on building for modern Web standards and for modern mobile devices. For Android, Ionic supports Android 4.1 and up. For iOS, Ionic supports iOS 7 and up.[6] Ionic 2 supports the Universal Windows Platform for building Windows 10 apps.[7] Ionic Framework, powered by Angular.js, supports BlackBerry 10 apps.[8]

Performance

Compared to hybrid applications, mixing Ionic code with native mobile app code in PhoneGap allows for higher performance of the resulting product: utilizing AngularJS (rather than jQuery) allows Ionic to rely on native hardware acceleration (rather than extensive DOM manipulation). Ionic leverages CSS transitions and transforms for animation as a way to leverage the GPU and maximize available processor time.

Installation

Ionic is an npm module and requires Node.js.

References

  1. "Drifty, Creators Of The Ionic Mobile Framework". Retrieved 14 March 2015.
  2. Sarah Perez (10 March 2014). "Drifty, Makers Of The Ionic Mobile Framework, Raise $1 Million". Retrieved 14 March 2015.
  3. "Ionic Documentation Overview, Download". Retrieved 21 April 2016.
  4. "software base".
  5. "How 2015 Went for Ionic". The Official Ionic Blog. January 5, 2016. Retrieved 11 January 2016.
  6. "Ionic Documentation Overview, Browser Support". Retrieved 17 July 2015.
  7. "Announcing Windows Support in Ionic 2". Retrieved 22 April 2016.
  8. "Top JavaScript Frameworks for Enterprise Mobility". Retrieved 21 September 2015.

External links

This article is issued from Wikipedia - version of the 11/23/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.