TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Meteor in Production

65 pointsby rekatzover 11 years ago

11 comments

FooBarWidgetover 11 years ago
The author says that Meteor is a framework that is &quot;pretty similar&quot; to Rails, but that is not true.<p>Meteor is totally different and strongly geared towards &quot;real-time&quot;[1] responses, unifying client-server code bases and automatic state propagation to all connected clients.<p>Rails embodies convention over configuration and the don&#x27;t-repeat-yourself principle. It&#x27;s ecosystem is generally geared towards server-side processing, although there is nothing inherent in Rails itself that would make it a bad choice for single-page apps with &quot;real-time&quot; responses.<p>Meteor is much more useful than Rails for certain classes of applications, but likewise Rails is much more useful than Meteor for other classes of applications.<p>[1] I don&#x27;t like this word. <i>This</i> is what &quot;real-time&quot; should mean: <a href="https://en.wikipedia.org/wiki/Real-time_computing" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Real-time_computing</a>
评论 #6682343 未加载
评论 #6682377 未加载
wc-over 11 years ago
I didn&#x27;t use demeteorizer for <a href="https://lawyermatch.me" rel="nofollow">https:&#x2F;&#x2F;lawyermatch.me</a>, but after making a meteor bundle you just get a node app anyway, so deploying to production didn&#x27;t really hold any surprised in store for me.<p>Related to production-meteor, I guess phusion passenger supports meteor now, does anyone have experience with the pluses or minuses of passenger over node&#x2F;forever + nginx? LawyerMatch has been a way for me to test new tech to begin with, so I&#x27;m interested in giving passenger a try for a production app...
评论 #6681561 未加载
systemtriggerover 11 years ago
Author asserts Meteor scales poorly, which inspired his script &quot;demeteorizer&quot; which helps only if the project is deployed to author&#x27;s hosting service &quot;modulus.io&quot;
评论 #6681572 未加载
评论 #6681064 未加载
评论 #6680850 未加载
mcriderover 11 years ago
I ran a meteor app as an entry system for a local design awards show last month. Everything went swimmingly well and people loved the fast app-like interface. The only place I had trouble was on the admin side where large amounts of items were sometimes not loading properly (usually a page refresh would clear the problem though). My takeaway was 1) This is beta software people, of course its not going to be perfect and 2) Deciding what should be sent to the client takes some thought and I could have almost certainly made things more efficient. With time, I think both of those issues will be resolved what with the highly active meteor community and MDG making great progress on the framework, and with me thinking more &#x27;meteor-like&#x27; and building my apps more efficiently.
评论 #6680836 未加载
meowfaceover 11 years ago
If you need to strip a lot of boilerplate and modify the code of a large framework in order for you to use it enjoyably, maybe you should look into different frameworks instead? Perhaps a microframework.
评论 #6680812 未加载
arunodaover 11 years ago
One note on the Meteor&#x27;s Scalability. Meteor cannot be scaled with the traditional way we scale apps. Adding more instances does not leads to a scalable meteor app.<p>Since Meteor gets updates from Mongo. Since one write happens, every instance needs to be get that change as well. In Order to have that, we need to use the Mongo Oplog integration. See more info on that.[0]<p>Official Mongo OPLOG integration comes with Meteor 1.0 (early 2014), Since then you can use my Smart Collections[1] for Oplog Support.<p>[0] - <a href="http://meteorhacks.com/lets-scale-meteor.html" rel="nofollow">http:&#x2F;&#x2F;meteorhacks.com&#x2F;lets-scale-meteor.html</a><p>[1] - <a href="http://meteorhacks.com/introducing-smart-collections.html" rel="nofollow">http:&#x2F;&#x2F;meteorhacks.com&#x2F;introducing-smart-collections.html</a>
Myrmornisover 11 years ago
Is it just me or does that page not really work on a touch screen device (iPad)? It loads with width exceeding screen width and the pinch gesture doesn&#x27;t seem to work. It just scrolls horizontally. Or does that not make sense?
jrochkind1over 11 years ago
If the Meteor packaging&#x2F;dependency system can be easily automatically converted to node.js standard...<p>...this makes me ask why the heck Meteor doesn&#x27;t just use the node.js standard to begin with?
评论 #6682719 未加载
useriumover 11 years ago
I made this with Telescope and Meteor: <a href="http://usability.userium.com/" rel="nofollow">http:&#x2F;&#x2F;usability.userium.com&#x2F;</a><p>It&#x27;s a bit slow, might be because I can only use one dyno on Heroku with Meteor, because it needs session affinity.
kirbykover 11 years ago
&quot;If you need video streams like CodersTV. All of these are built with Meteor and are awesome examples of things you can build.&quot;<p>I need video streams in Meteor. Show me where.
评论 #6685363 未加载
jlebrechover 11 years ago
I thought of building something akin to a social network for the sole purpose of letting the users create user scripts to customise their profile in lua.