Hello all.
I’m thinking about create mobile app for my web service, but know a very little about meteor mobile development.
Do somebody can advice any resources about mobile dev with meteor?
I also find some frameworks: Meteoric Onsen UI Framework7 Reapp
and many others.
Do somebody advice which framework preffered to develop mobile app for meteor based web?
We are using Meteoric today. However, if I was choosing today I would probably go with React and Reapp as this should integrate more natively with Meteor 1.2 and React.
I will say that I think Meteoric is still viable if you want to stay with Blaze. Just be ready and willing to support the code base yourself. We do this by forking and installing as a local package.
Do you have any links to usefull recources “how to start mobile dev with meteor”? For me it is not clear how to separate(or maybe combine) code for web and mobile. Does it somthing like on meteor when you separate code for client and server in different directories client/ and server/ ? My future app should be synchronized with web and should share part of code. Now I can’t imagine how it should be.
Yes, struggled with same thing. Right now we are focused on mobile so have not implemented separate template/view code for web. When we do, we will likely go for an all package architecture following patterns as discussed here http://meteorpatterns.com/Sewdn/project-builds and here http://meteor.redandivory.com/#/
Good luck!
Meteor as backend/subscriptions + http://polymer-project.org version 1.0 + vulcanize tool.
The secret knowledge: Try to keep /public folder on server minimum size.
Ok. I will try. Another question. I plan to reuse code for web in my app. How I should organize project to achive this goal. Now I have usual structure:
|- .meteor
|- client/
|- server/
|- public/
How to build mobile app using only mobile code not include whole project code?
Maybe like this:
|- .meteor
|- www
----|- client/
----|- server/
----|- public/
|- app
----|- F7 and mobile staff
I plan to reuse some helpers and methods and use same collection and share documents between web and mobile.
Some of you suggest to use reapp. What is that suggestion based on?
I had a quick look and I see it is hardly maintained anymore and there is no clear way (to me at least) to integrate it with Meteor.
Now the MDG will move away from Blaze, the Meteoric package will be no longer maintained. The question is, what is the alternative for building mobile apps now? I like react, no problem to use that instead of blaze, but what is the recommended css/html framework for mobile that works with it?