Meteor vs. Angular
differential.io
Meteor vs. Angular
1–10 of 35 posts
Re: Meteor vs. Angular
#2Re: Meteor vs. Angular
#3The problem space that it solves is not that hard, it just provides an extremely magical way to go about it. I imagine this makes things a lot harder to change, debug and maintain.
But then I'm the type of person who prefers boring and predictable, with a very big separation between front and back-end concerns.
I've been leaning towards the opposite architecture of what Meteor does, creating 3 entirely different layers for 1) core business logic, 2) web backend, 3) web frontend, whereas Meteor seems to want to blur the lines where things are happening.
Re: Meteor vs. Angular
#4Meteor is still way too magic for me. Seems great for rapid prototyping of real-time applications, and perhaps things like games... But I don't think I would feel comfortable building a large application on it. The problem space that it solves is not that hard, it just provides an extremely magical way to go about it. I imagine this makes things a lot harder to change, debug and maintain. But then I'm the type of per…
Re: Meteor vs. Angular
#5Meteor is still way too magic for me. Seems great for rapid prototyping of real-time applications, and perhaps things like games... But I don't think I would feel comfortable building a large application on it. The problem space that it solves is not that hard, it just provides an extremely magical way to go about it. I imagine this makes things a lot harder to change, debug and maintain. But then I'm the type of per…
You don't have to blur the lines if you don't want to, don't use globals if you want purity.
Re: Meteor vs. Angular
#6The thing that has me sticking with Angular over Meteor is that Angular doesn't care about your backend or infrastructure. With Meteor, I feel limited due to the tight integration of the server and client. Due to that, I feel like its harder to scale, and perhaps only suitable for prototyping.
Re: Meteor vs. Angular
#7The thing that has me sticking with Angular over Meteor is that Angular doesn't care about your backend or infrastructure. With Meteor, I feel limited due to the tight integration of the server and client. Due to that, I feel like its harder to scale, and perhaps only suitable for prototyping.
I guess Meteor is a good choice for JS-only developers.
Re: Meteor vs. Angular
#8For example, it might be the case that simple, real-time-ish data is very important. Meteor might be an excellent choice.
It could instead be the case that lock-in (and Meteor is definitely encouraging lock-in on both sides of the http request) is a concern for your team, and you feel it important to have flexibility or maturity on the server-side. Meteor might be a terrible choice.
X can be better than Y in one circumstance, and must worse in another. Define, research, pick.
Re: Meteor vs. Angular
#9The thing that has me sticking with Angular over Meteor is that Angular doesn't care about your backend or infrastructure. With Meteor, I feel limited due to the tight integration of the server and client. Due to that, I feel like its harder to scale, and perhaps only suitable for prototyping.
Re: Meteor vs. Angular
#10An example (not written by me)
https://github.com/tommuhm/angular-meteor-example/blob/maste...