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.

Mean Stack

103 pointsby keva161almost 12 years ago

13 comments

alanhalmost 12 years ago
I’m not a NoSQL expert, but everyone I know who is considers Mongo a joke in production. And I would never use Angular in production apps (“painfully slow” is reason enough but I have ideological differences as well). That makes saying “no” to this stack easy.
评论 #6150703 未加载
评论 #6150647 未加载
评论 #6150681 未加载
评论 #6150668 未加载
评论 #6150858 未加载
评论 #6152248 未加载
评论 #6151794 未加载
wasdalmost 12 years ago
What&#x27;s the deal with MongoDB and the node.js community? I don&#x27;t find non relational databases that enticing and there are javascript drivers for postgres [1].<p>[1] <a href="https://github.com/creationix/postgres-js" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;creationix&#x2F;postgres-js</a>
评论 #6150590 未加载
评论 #6150633 未加载
评论 #6150588 未加载
评论 #6151399 未加载
d0malmost 12 years ago
So much hate on HN these days. Thanks for sharing, that&#x27;s definitely a very useful and productive stack that I keep going back to again and again for every projects. Will give it a try next time.
outside1234almost 12 years ago
Love it - except for the Angular part - can we get a MEEN stack with Ember.js?
评论 #6150693 未加载
评论 #6150986 未加载
评论 #6151250 未加载
评论 #6151872 未加载
begriffsalmost 12 years ago
This would be even smoother as a Yeoman generator. <a href="http://yeoman.io/generators.html" rel="nofollow">http:&#x2F;&#x2F;yeoman.io&#x2F;generators.html</a>
olegpalmost 12 years ago
We&#x27;ve been using almost the same stack at StartHQ (<a href="https://starthq.com" rel="nofollow">https:&#x2F;&#x2F;starthq.com</a>) with great success. Mongo and Angular make it easy for us to iterate quickly. Performance hasn&#x27;t been an issue with up to 300 concurrent visitors on site running on a AWS micro instance.<p>The one thing we do differently is that we&#x27;re using fibers and Common Node (<a href="https://github.com/olegp/common-node" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;olegp&#x2F;common-node</a>), as well as Stick (<a href="https://github.com/olegp/stick" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;olegp&#x2F;stick</a>) instead of Express. This lets us write complex business logic with less code and without having to worry about explicitly handling errors, since we get to use exceptions.
arunodaalmost 12 years ago
How about providing a npm module(binary) as well. So we can use it like this.<p>`mean create myapp`
评论 #6150772 未加载
评论 #6151846 未加载
amoshavivalmost 12 years ago
Guys as the author of this project one of the guidelines i had was to create it as modular and familiar as i can, so whenever I could I tried using a popular module(mongoose, passport etc.)<p>I deeply encourage anyone who wants to break, replace, remove, add any part of this project to go ahead and do so! Like any recipe this is just our serving suggestion.<p>I&#x27;d love to see an ember fork!
ErikAugustalmost 12 years ago
I spoke of the &quot;MEAN&quot; stack today - cool to see others using to a tee - with Mongoose and Passport.<p>Two other nice packages:<p>Nodemailer - for emailing - npm install nodemailer<p>Moment.js - for time&#x2F;date formatting, and a ton more (manipulation, etc) - npm install moment
dmakalmost 12 years ago
It&#x27;s pretty sweet, I cloned this project to get started and it was much harder to learn at first since there wasn&#x27;t an example of the basic CRUDs; They added examples now, so the learn curve is less steep.
MrBluealmost 12 years ago
Looks a lot like this node+express+mongo boilerplate: <a href="https://github.com/madhums/node-express-mongoose-demo" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;madhums&#x2F;node-express-mongoose-demo</a>
评论 #6151222 未加载
kaeructalmost 12 years ago
the background image makes it unreadable on small windows... i suppose it&#x27;s the same on mobile devices
评论 #6150665 未加载
评论 #6151615 未加载
digitalzombiealmost 12 years ago
I had worked with several people that chose Mongodb.<p>Their reasons were the database is easy and it &quot;scale&quot;.<p>The real reason why they chose it because they think SQL is too hard. Really, they were self taught programmers that couldn&#x27;t bother to learn SQL and jump straight to NoSQL hype and the fact it was &quot;easy&quot;.