我试图通过本教程获得一个示例:http://g00glen00b.be/meteor-twitter-streaming/ 这是Github网址:https://github.com/g00glen00b/meteor-twitter-stream
它是用Meteor 0.7编写的,它需要一些软件包,因此说明书要说:
mrt add semantic-ui
mrt add npm
mrt add streams
mrt add momentjs
然而,我有Meteor 0.9.4,从0.9开始我们不再使用陨石了,只需直接添加包" meteor add #package#"命令。
问题是这个项目所需的软件包都找不到(npm,semantic-ui,streams,momentjs)。我试过询问代码的原始作者,但他需要时间来研究它。
所以我想我会问社区。有什么想法吗?
感谢您的帮助
答案 0 :(得分:2)
在将程序包迁移到0.9期间,许多程序包都在mrt
用户下自动迁移。因此,meteor add mrt:<package>
可能有用。
找到您正在寻找的套餐的最佳方法是在Atmoshpere上搜索它,例如https://atmospherejs.com/?q=semantic,https://atmospherejs.com/?q=moment等。
因此,您的安装说明应该变为:
meteor add nooitaf:semantic-ui meteorhacks:npm arunoda:streams mrt:moment
请注意Arunoda is no longer maintaining streams
,因此您可能希望寻找替代方案。
答案 1 :(得分:0)