Earlier quoted context omitted.
No. https://github.com/meteor/meteor
https://github.com/Perl/perl5 Apparently it’s not the only thing that is as good as dead with activity on GitHub. Meteor might not literally be dead, but it may as well be. Don’t use it. Even MDG seems mostly focused on GraphQL these days (and that sucks, too. But that’s a whole different topic.)
Ask HN: Is Meteor.js dead?
71–80 of 93 posts
Re: Ask HN: Is Meteor.js dead?
#72We've been doing doubletime to migrate off of an old Meteor app, due to its bundling of old versions of node and really questionable use of Mongo. I think that, in the right hands, Meteor is a great prototyping tool--putting into production and scaling it though is a fool's errand.
We are in the same situation too, I am curious, you are migrating towards what and how ?
And while the Phoenix part has all kinds of issues--especially when you make it work with Mongo instead of Postgres and Ecto--it's waaaay better than the Meteor bilge we inherited.
EDIT: And honestly, at this point we all think that Rails or Node or anything else would've been a better move than Phoenix, but hey hindsight is 20/20 and we inherited the legacy Phoenix app.
Bet folks don't even know that those exist. :(
Re: Ask HN: Is Meteor.js dead?
#73We've been doing doubletime to migrate off of an old Meteor app, due to its bundling of old versions of node and really questionable use of Mongo. I think that, in the right hands, Meteor is a great prototyping tool--putting into production and scaling it though is a fool's errand.
Meteor 1.6 supports Node 8.9.x. What's questionable about Meteor's use of Mongo? Reading the oplog? You don't need to use the reactivity if you don't want it. There is a simple API to either use polling or turn off reactivity altogether if you don't care about it.
Doesn't matter what new versions support if we can't update things.
The reactivity choice was made for us (poorly).
Re: Ask HN: Is Meteor.js dead?
#74Earlier quoted context omitted.
No. https://github.com/meteor/meteor
https://github.com/Perl/perl5 Apparently it’s not the only thing that is as good as dead with activity on GitHub. Meteor might not literally be dead, but it may as well be. Don’t use it. Even MDG seems mostly focused on GraphQL these days (and that sucks, too. But that’s a whole different topic.)
If you spend little time at the forums you'll realize there are plenty of people using it with active community contributions and thriving open source projects and commercial businesses built on top of it.
Technology goes through phases (hype cycle) and Meteor is at a stable phase.
A lot of the comments here are ignorant about the the progress made in the last two years, to be able to form objective opinion, one need to proper research and not just listen to the FUD.
Re: Ask HN: Is Meteor.js dead?
#75As a relevant data point, Qualia uses Meteor and recently raised $30M.
https://blog.meteor.com/dynamic-imports-in-meteor-1-5-c61304...
https://blog.meteor.com/modernizing-the-real-estate-industry...
https://www.forbes.com/sites/omribarzilay/2018/03/07/qualia-...
Re: Ask HN: Is Meteor.js dead?
#76Earlier quoted context omitted.
> It's not the only option but it's a damn good one. I've been using Parse, is another good option in your opinion? I quite like it, especially as everything is available via REST so it is easy to use it with Elm
I'd personally avoid Parse as it's been shut down. I worked with someone who had inherited a Parse-based app last year and we had to do a fair amount of gymnastics to get it working smoothly. That was just my personal experience, though. A good rule of thumb: if it works for you, use it. There's a lot of ballyhoo about keeping up with the tech Joneses which is mostly unnecessary. It's the most common excuse I see peo…
Re: Ask HN: Is Meteor.js dead?
#77Between GraphQL and React, I'm not sure how much Meteor is left in a modern "Meteor" app.
Today, our webapp continues to work better than ever with the above technologies thanks to the continuous improvements made to Meteor by the MDG and the community.
Our business currently has no use for GraphQL or React.
Re: Ask HN: Is Meteor.js dead?
#78Earlier quoted context omitted.
I'd personally avoid Parse as it's been shut down. I worked with someone who had inherited a Parse-based app last year and we had to do a fair amount of gymnastics to get it working smoothly. That was just my personal experience, though. A good rule of thumb: if it works for you, use it. There's a lot of ballyhoo about keeping up with the tech Joneses which is mostly unnecessary. It's the most common excuse I see peo…
I like that it is open source, but the question is how well is it being maintained? Having said that one can self-maintain as I think it is NodeJS. That's what you'd have to do if you write your own Backend - so the only problem is how spaghetti like the code is.
Side note: frameworks don’t write spaghetti, developers do.
Re: Ask HN: Is Meteor.js dead?
#79Earlier quoted context omitted.
I like that it is open source, but the question is how well is it being maintained? Having said that one can self-maintain as I think it is NodeJS. That's what you'd have to do if you write your own Backend - so the only problem is how spaghetti like the code is.
It’s just Node.js. All of the Meteor-related code can be removed if you really wanted and just rely on the build system. Even if you had to do a port to a vanilla Node.js app, a large reasonably well-structured app might take a month or two tops to port. Side note: frameworks don’t write spaghetti, developers do.
Re: Ask HN: Is Meteor.js dead?
#80I never used meteor, but from what I understand it's functionality was, I currently use FeathersJS + SocketIO + VueJS (and nuxtJS for serverside rendering).
I'm thinking of checking out Meteor now since on balance people here are saying it's good for prototyping at least, and I'd like some real-time functionality.