1

We are building a web app, and were evaluating to use meteor. At this point meteor does not do much at the server side. ex there is no routing layer, controllers, ORM etc.

So my first question is are these features expected in future?. Is it going to provide a full stack web framework like Rails.

At this point if we need to use meteor we need more features on the server side. So is it possible to integrate server side mvc web frameworks in meteor like Express , towerjs, railways etc with meteor? Or the other way, can meteor be integrated into such frameworks.

4

3 回答 3

0

如果原生允许构建 npm 项目和模块,Meteor 将是一个很好的替代方案。忽略 Node.JS 中的所有社区和迄今为止制作的所有支持的资源是一样的,并且在短期和中期做出了一些非常限制性和可能不完整的事情。

正如 Rahul 和 Lance 所说,您还必须考虑 Meteor 非常新且不完整。您还需要考虑 Meteor 试图达到的方法是构建一种不同类型的网站,可能更像是 Web 应用程序而不是传统的网站。

无论如何,我们必须观看 Meteor 项目,继续关注它并查看即将到来的新更新。


我猜你不能将 Express 与 Tower.JS 结合起来——如果我错了,Lance 纠正我——但我知道你也可以将 Express 和 DerbyJS 结合起来。

于 2013-01-23T17:20:49.363 回答
0

路由和一种形式的 ORM 在路线图上。您已经可以编写“控制器”,因为您可以通过 Meteor.methods 公开方法,客户端可以调用这些方法并处理数据库中的对象。

正如 Lance 所说,Meteor 是一个全栈框架,但仍在开发中。如果您想使用 Meteor 但发现它不完整,我建议您等待并在此期间使用其他东西(如 Tower 或 Express)。

于 2012-12-26T22:02:31.903 回答
0

有一个Meteorite 包,它提供与 Meteor 一起用于开发 REST API 等的 express(免责声明:我是作者)

于 2014-04-22T17:45:02.373 回答