Meteor + Ionic 4 - How to?

Hey guys,

I am beginning a project where I would like to have a Meteor back-end connected to an Ionic UI.
My questions are:

(1) Is there any (up-to-date) integration I could leverage? Meteoric is deprecated and most other packages I found are still caught up on Ionic 2.

(2) Is there a way of using Ionic with Blaze instead of Angular?

Thanks!

Hi,

Ionic 4 gives support to all frontend framework including blaze. You just need to add these scripts in the header and you’re done.

Consider Ionic as some third party lib, and you have to include it in the header to make it works.

<script type="module" src="https://cdn.jsdelivr.net/npm/@ionic/core@4.7.4/dist/ionic/ionic.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@ionic/core@4.7.4/dist/ionic/ionic.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ionic/core@4.7.4/css/ionic.bundle.css"/>

Source: [https://ionicframework.com/docs/installation/cdn]

2 Likes

Thanks for the reply!

Just one further question:
What about building the app? Do I follow exactly the same steps I would in a normal Meteor mobile app (=> Cordova) or is there anything Ionic-specific I have to do?

No, The process remains the same. No Change @patrickcneuhaus