我正在尝试将 Meteor 应用程序从 Heroku 移植到 Modulus.io(希望能够测试粘性会话和水平缩放)。我已经使用 Modulus.io 脚本对我的应用程序进行了分解,如以下文章和存储库中所述。
https://github.com/onmodulus/demeteorizer
http://blog.modulus.io/demeteorizer
解压缩后,我压缩并上传,并在浏览器中得到一个空的部署日志和一个白屏。经过一番研究,我删除了生成的 demeteorized 应用程序中的 node_modules 目录,然后压缩并上传。这似乎绝对是正确的举动,因为一切都开始部署,并且日志变得忙碌。
这是我想出的错误:
Error: `/mnt/data/1/clinical-workqueues/server/node_modules/fibers/bin/linux-x64-v8-3.11/fibers.node` is missing. Try reinstalling `node-fibers`?
at Object.<anonymous> (/mnt/data/1/clinical-workqueues/server/node_modules/fibers/fibers.js:13:8)
at Module._compile (module.js:449:26)
at Object.Module._extensions..js (module.js:467:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:362:17)
at require (module.js:378:17)
at Object.<anonymous> (/mnt/data/1/clinical-workqueues/server/server.js:3:13)
at Module._compile (module.js:449:26)
at Object.Module._extensions..js (module.js:467:10)
Forever detected script exited with code: 1
Forever restarting script for 6 time
有人知道我应该如何使用 demeteorized Meteor 应用程序在 Modulus.io 环境中“重新安装节点光纤”吗?我在这里离开了我的联盟,不知道如何继续。
提前感谢您的任何想法或建议!