Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚使用 express、passport 和 mongodb 在 nodejs 中完成了一个 REST 服务器应用程序
我想为该 mongodb REST api 的实时统计信息创建一个流星应用程序,例如连接数、在线用户等。
但我想不出一种将自定义 mongodb 与流星一起使用的方法。基本上我想与 nodejs/express 应用程序和流星共享同一个数据库。
是否可以?我敢肯定它应该是,但我不知道如何!
请帮忙!
好的,我到了该做什么。
在部署流星时,他们可以选择数据库。
所以我在meteor上创建了一个应用程序,然后为nodejs部署了它
这里是如何,
流星捆绑 myapp.tgz
提取 myapp.tgz 并使用以下命令。
PORT=3000 MONGO_URL=mongodb://localhost:27017/myapp node bundle/main.js
这是完整的文档:http ://docs.meteor.com/#deploying