过去几天(!)尝试了各种Meteor / OpenShift配置。简而言之,有一点点混乱,但最常见的问题是流星束需要将Fibers模块作为可下载的repo给出这样的
"dependencies": {
"fibers": "https://github.com/meteor/node-fibers/tarball/d519f0c5971c33d99c902dad346b817e84bab001",
"meteor-promise": "0.5.0",
"underscore": "1.5.2",
"source-map-support": "https://github.com/meteor/node-source-map-support/tarball/1912478769d76e5df4c365e147f25896aee6375e",
"semver": "4.1.0"
},
但似乎无法访问。
UNMET DEPENDENCY fibers@https://github.com/meteor/node-fibers/tarball/d519f0c5971c33d99c902dad346b817e84bab001
npm ERR! missing: fibers@https://github.com/meteor/node-fibers/tarball/d519f0c5971c33d99c902dad346b817e84bab001, required by meteor-dev-bundle@0.0.0
这里有一点,我不知道我是如何在OpenShift上运行流星应用程序的,但只是经过一些手动(使用ssh控制台)光纤安装/解除安装
npm install fibers@1.0.8
npm uninstall fibers
npm install fibers@1.0.5
etc ...
还有一个......链接 https://github.com/meteor/node-fibers/tarball/d519f0c5971c33d99c902dad346b817e84bab001似乎有效。
所以
出了什么问题 "dependencies": {
"fibers": "https://github.com/meteor/node-fibers/tarball/d519f0c5971c33d99c902dad346b817e84bab001",
...