Meteor中的后台工作者和REST服务

时间:2013-06-13 03:26:23

标签: node.js rest meteor

我有一个流星应用程序,并希望添加两个功能。

  1. 第一种是在服务器上安排后台任务,有点像cron作业。
  2. 第二种是添加HTTP端点以充当REST URL。我们的想法是为数据添加HTTP API。
  3. 使用meteor或Node可以完成这两个功能吗?

1 个答案:

答案 0 :(得分:2)

Node有几个cron模块:https://npmjs.org/search?q=cron。如果您想编写REST接口,强烈建议您进行解析:https://npmjs.org/package/restify

您可以使用以下方法使用npm模块(警告未来的读者,像node.js这样的流星处于不断变化的状态。此信息可能已经过时) :https://shiggyenterprises.wordpress.com/2013/05/16/accessing-the-file-system-in-meteor/

如果你想使用meteor本地,那么实际上有两个包可能符合你的要求:

reststop - https://atmosphere.meteor.com/package/reststop cron - https://atmosphere.meteor.com/package/cron

Atmosphere是一个社区支持的包回购。