TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Mean Stack

103 点作者 keva161将近 12 年前

13 条评论

alanh将近 12 年前
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 未加载
wasd将近 12 年前
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 未加载
d0m将近 12 年前
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.
outside1234将近 12 年前
Love it - except for the Angular part - can we get a MEEN stack with Ember.js?
评论 #6150693 未加载
评论 #6150986 未加载
评论 #6151250 未加载
评论 #6151872 未加载
begriffs将近 12 年前
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>
olegp将近 12 年前
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.
arunoda将近 12 年前
How about providing a npm module(binary) as well. So we can use it like this.<p>`mean create myapp`
评论 #6150772 未加载
评论 #6151846 未加载
amoshaviv将近 12 年前
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!
ErikAugust将近 12 年前
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
dmak将近 12 年前
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.
MrBlue将近 12 年前
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 未加载
kaeruct将近 12 年前
the background image makes it unreadable on small windows... i suppose it&#x27;s the same on mobile devices
评论 #6150665 未加载
评论 #6151615 未加载
digitalzombie将近 12 年前
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;.