csvan
csvan

Reputation: 9464

How to create an App Using Ionic Framework without including Ionic.js

We are currently considering building an app for iOS and Android using Angular Material.

Having worked with Ionic before, I really like the out-of-the-box dev tools it provides (easy Crosswalk integration, preview server, etc). Is it possible to still make use of those to build and deploy the project (as if we were working with a standard Ionic project), without actually including any Ionic JS or CSS components in the code itself?

Upvotes: 4

Views: 866

Answers (1)

leetheguy
leetheguy

Reputation: 872

Ionic ties in to Crosswalk through Cordova. The Ionic CLI offers a lot of tools to make working with Cordova easier so it is worth keeping Ionic around even if you don't want the templates.

You can easily get the benefits of Ionic like Cordova and Livereload without the Ionic JS and CSS by installing an Ionic app like normal and just removing the CSS and JS requirements from your HTML. You can then use Bootstrap, Foundation, or nothing at all.

Ionic as a CLI and framework offers a lot of power, but ultimately it just creates a static web app with plain old HTML, CSS, and JS. There's nothing magical about it.

Upvotes: 4

Related Questions