While I do enjoy the bleeding edge on which we live. I'd love to wait to have the discussion about the new Meteor features until their site and newsletter tells us about the release. Sure the git commit is a landmark, but there's nothing to offer other than 'kudos' with this link as the discussion point.
saym's comment refers to the original post, which pointed to a GitHub commit: https://news.ycombinator.com/item?id=8522106 . We merged the stories (in our ghetto way) and moved the comments over here.
Meteor hits 1.0
51–60 of 250 posts
Re: Meteor hits 1.0
#52Trying to figure out how it works. And saw this in one of the paragraphs: > No longer do you need to provision server resources, or deploy API endpoints in the cloud, or manage a database So you don't manage a database, but what happens to the data. Can anyone trace an example, I don't, order or cart update from client code to persisting it on the back-end somehow? Does it use flat files...?
It uses a database, specifically MongoDB. But as I understand it, Meteor manages this for you itself, and abstracts the orchestration of those things into the Meteor platform itself. It's just a higher level of abstraction, not a new technology. And certainly not flat files.
Re: Meteor hits 1.0
#53Also check out a catalog of the best Meteor learning resources at http://MeteorHelp.com
Re: Meteor hits 1.0
#54Re: Meteor hits 1.0
#55A sea change in how web software gets built and consumed, in the same way Britannica yielded (had to) to Wikipedia.
Re: Meteor hits 1.0
#56I'm still a bit unclear on what the target market for Meteor is. Is this just for small to medium sized projects, or is it intended to be used for large-scale projects as well? Since it seems like everyone wants to think of themselves as doing something huge, I'm sure the answer can't be 'no' to the second question — but I don't see any examples of significant projects being built on the platform. Actually, with that…
Meteor just hit 1.0 and is not the type of framework you can just start including in your stack. You really have to build a meteor app from the ground up, so it is hard for established tech companies to get into Meteor when they already have spent years coding on another stack. As new startups who use Meteor grow you will see those large-scale projects come about.
Re: Meteor hits 1.0
#57How does one start a project like this and get paid? What are the revenue sources for the team? It's a great product, and the fact that it's open source is amazing.
https://news.ycombinator.com/item?id=8522381
is interesting with regards to your questions.
Re: Meteor hits 1.0
#58Earlier quoted context omitted.
If you look at the main website there are 6 featured videos of real companies using Meteor in production.
It was completely unclear to me that those were links. I guess that's my feedback? Thanks though!
Re: Meteor hits 1.0
#59Meteor looks extremely simple to get up and started with, and I was thoroughly impressed by the implicit modularity of it all ("meteor create" makes like 3 files, I think that's awesome)
They really try (and succeed) to rid ourselves of the duplication on server and client. And if the android/ios support is as easy as it looks, this is an insanely useful framework.
I'm going to use it in my next project for sure now, just need to see how template/module composition works