Mobile App Development in Meteor? - meteor

Which framework is best for to develop mobile app in Meteor.I am new to meteor.So please give me suggestions for to develop mobile app frameworks like jquery or is there any more frameworks for mobile app development?

I have never personally developed a mobile application with Meteor but if I did, I would use PhoneGap.
I found this awhile back which is where I would start (meteor-phonegap), I believe this only has support for Android currently though. If you are interested in cross-platform I would take a look at this SO answer.

In addition to PhoneGap you can also interact with your Meteor app via native mobile apps. There are DDP libraries for each of the major platforms so your app can communicate with the server-side Meteor code.
To re-use the client-side code you can go full PhoneGap or if you don't need access to the native sensors and such you can also just use an embedded browser UI component like PhoneGap does but without bothering with the 'bridge' technology they provide.

Hi you can use React Native as client side and Meteor in Server Side.
What is React Native?
React Native is the next generation of React a Javascript code library developed by Facebook and Instagram, which was released on Github in 2013. Native app creation means writing apps for a specific operating system. React Native helps developers reuse code across the web and on mobile.
Why React Native?
Because this is node it is possible to use React Native with Meteor with the same package in npm. The second thing is React Native is Cross Platform that can build app into Android and IOS.
Sample App
https://github.com/spencercarli/react-native-meteor-boilerplate
https://github.com/meteor-factory/awesome-react-native-meteor
https://github.com/spencercarli/meteor-todos-react-native
https://github.com/spencercarli/meteor-react-native-authentication
https://github.com/spencercarli/quick-meteor-react-native`
https://facebook.github.io/react-native/showcase.html

Related

Is there a service converting web application into native iOs+Android apps AND supporting pusher.com

There is a mess of services converting your existing web application into a native iOS and/or Android app.
For push notifications they all support OneSignal.
But I couldn't find any supporting Pusher.com.
Did anybody know a service like GoNative which support Pusher?
Thanks.
While I am not familiar with app conversion tools you mentioned, you should be able to use Pusher Beams SDKs for Android and iOS directly.
You can find the SDKs here:
iOS: https://github.com/pusher/push-notifications-swif
Android: https://github.com/pusher/push-notifications-android
And there are several tutorials published on Pusher Tutorials site, just search for the Beams tag:
https://pusher.com/tutorials?tag=Beams

Mobile friendly ASP.Net app to mobile app?

I have an ASP.Net web application (web forms) with Telerik ajax controls.
It is currently mobile-friendly, but I would like to put it into an app that a user could download from the app stores.
Is there a quick and easy way to make this work using something like a
WebView or am I likely stuck writing a full native app? The
application​ is mostly data driven (lots of Telerik grids) and will
need an internet connection for most functions.
I guess you could create a native app that opens the web site inside a WebView. That's fairly simple. I've done as much in the Video player app I wrote for my book. However, that isn't in the spirit of mobile apps. The point of putting it in the app store is generally to give your users an app that works like they expect on their phone.
If it is data driven, then expose the data via REST APIs and consume those APIs in a mobile app. If you want offline sync (for resilience or performance), that's an additional consideration. If you want mobile specific functionality like push notifications or authentication via touch id, for example, then those would also need a native app.
Short version - the simple "project my web app into a native app" is easy. But it's unlikely to be satisfying to your users and won't allow you to extend your app with native features.

How can Realm be used with a Rails app & and iOS app platform product?

If Realm is a replacement for SQLite how can it be used with a platfrom product that includes a Rails web app and an iOS app? Is Realm suitable for the Rails app, or is there a better option / solution?
Realm does not currently have a Ruby binding, so it cannot be used by a Rails app.
This is now possible.
Realm can be used with Ruby (and Rails) over GraphQL. You can use any GraphQL library you like to send queries and mutations to either your own Realm server or a hosed one on Realm Platform.
However, as there is (currently) no "ActiveRealm" style adapter it requires writing your own.
Here are the docs on making the requests themselves.
https://docs.realm.io/platform/graphql-web-access

How does Phonegap to migrate platform app

I have an app that maps routes developed for Android.
Now I want to make the app for iOS, I'm estuando about PhoneGap and I have some questions:
1 - The Phone Gap convert my java code to Objective C?
2 - This is the solution most widely adopted platform for migrating apps?
3 - The api google directions works with Phonegap?
from their home page:
Easily create apps using the web technologies you know and love: HTML, CSS, and JavaScript
PhoneGap is a free and open source framework that allows you to create mobile apps using standardized web APIs for the platforms you care about.
Phonegap doesn't convert your code, you can write code in html, javascript and css and phonegap will wrap it as an app for all platforms.
Regarding google directions, I never worked with it, but as far as I know there is a javascript api so you should be able to use it with phonegap.

Instant messaging system in Web App and Mobile Native App

I am searching for some messaging systems or frameworks which are readily to be integrated into .NET web application, which is similar to that found in Facebook and Google, but without voice and video call. Also it can support Mobile Native App. Are there any options for this system?
Any answer would be highly appreciated.

Resources