Hi! This is my first post here in the forum and I’m really new to Meteor Development. (It’s my second day)
I’ve skimmed through some introductory documentation and a few videos. Can anyone clarify web app development using Meteor for me?
Is Meteor.com fully coded using Meteor? Or does it use Angular/React on the sides?
If I were to create a similar web app (A job listings site) how do I go from the one-page website to a full-blown web app?
Yes! meteor.com in particular is built using a standard set of packages for a Meteor app, including the standard Blaze frontend rendering library. However, using Angular/React doesn’t make something not a Meteor app - Meteor is all about the data and logic layer, not just Blaze, the frontend framework.
You mean via the url? Well that’s the thing, the url stays the same. No parms added. A single url can match multiple routes.
You essentially have complete control over the url with React Router. When you click on the login button from root, the url still can display as “/” if you wish instead of “/login” all via the router loading different components based upon the context.
All the while, the back button still works properly.
Just curious if Flow Router can manage this trick. I tried watching the few Flow Router videos available, but couldn’t quite understand what was being said due to his accent being as thick as molasses in winter.
Thanks @sashko for your quick and detailed response!
I’ll take your suggestion and base my stack on Meteor + Blaze in the development of my first project.
Is there any specific tutorial or documentation you may have that would include the routing guide?
Are there also any other things I should go through before I start my project?