Twitter bootstrap 在Cloud9上运行带引导的默认Meteor应用程序时出错

Twitter bootstrap 在Cloud9上运行带引导的默认Meteor应用程序时出错,twitter-bootstrap,meteor,cloud9-ide,Twitter Bootstrap,Meteor,Cloud9 Ide,在Cloud9(c9.io)IDE上创建默认meteor应用程序,添加twbs:bootstrap,并运行。结果: Unexpected mongo exit code null. Restarting. Can't start Mongo server. 下面是一个测试项目的输出,我在其中创建了一个默认应用程序,添加了引导并运行 user:~/workspace $ meteor add twbs:bootstrap C

在Cloud9(c9.io)IDE上创建默认meteor应用程序,添加twbs:bootstrap,并运行。结果:

Unexpected mongo exit code null. Restarting.  
Can't start Mongo server.
下面是一个测试项目的输出,我在其中创建了一个默认应用程序,添加了引导并运行

user:~/workspace $ meteor add twbs:bootstrap                                  
Changes to your project's package version selections:
twbs:bootstrap  added, version 3.3.5   
twbs:bootstrap: The most popular front-end framework for developing responsive, mobile first projects on the web.

user:~/workspace $ meteor --port $IP:$PORT    
[[[[[ ~/workspace ]]]]]
=> Started proxy.                             
=> Started MongoDB.                           
Unexpected mongo exit code null. Restarting.  
Unexpected mongo exit code null. Restarting.  
Unexpected mongo exit code null. Restarting.  
Can't start Mongo server.                     
Killed                                        
失败后,我从项目中删除引导并重新运行

user:~/workspace $ meteor remove twbs:bootstrap
Changes to your project's package version selections:
twbs:bootstrap  removed from your project
twbs:bootstrap: removed dependency            

user:~/workspace $ meteor --port $IP:$PORT                                                                                                                                                                  
[[[[[ ~/workspace ]]]]]                       
=> Started proxy.                             
=> Started MongoDB.                           
=> Started your app.                          
=> App running at: http://0.0.0.0:8080/
…流星计划成功启动

有没有办法让meteor应用程序在Cloud9上使用bootstrap运行?

works提供的解决方案

在运行应用程序之前运行
meteor update
,这样
c9.io
就不会耗尽内存。

请查看建议