流星应用程序崩溃

时间:2015-09-11 11:25:41

标签: web-applications meteor crash

尝试启动应用时出现此错误:

    enteW20150911-13:17:04.497(2)? (STDERR)           W20150911-13:17:04.498(2)? (STDERR) /home/sanchezj/.meteor/packages/meteor-tool/.1.1.4.st5tu4++os.linux.x86_32+web.browser+web.cordova/mt-os.linux.x86_32/dev_bundle/server-lib/node_modules/fibers/future.js:245
W20150911-13:17:04.498(2)? (STDERR)                         throw(ex);
W20150911-13:17:04.498(2)? (STDERR)                               ^
W20150911-13:17:04.498(2)? (STDERR) TypeError: Cannot call method 'insert' of undefined
W20150911-13:17:04.498(2)? (STDERR)     at app/github_microscope/server/fixtures.js:6:28
W20150911-13:17:04.499(2)? (STDERR)     at app/github_microscope/server/fixtures.js:74:3
W20150911-13:17:04.499(2)? (STDERR)     at /home/sanchezj/microscope/.meteor/local/build/programs/server/boot.js:222:10
W20150911-13:17:04.499(2)? (STDERR)     at Array.forEach (native)
W20150911-13:17:04.499(2)? (STDERR)     at Function._.each._.forEach (/home/sanchezj/.meteor/packages/meteor-tool/.1.1.4.st5tu4++os.linux.x86_32+web.browser+web.cordova/mt-os.linux.x86_32/dev_bundle/server-lib/node_modules/underscore/underscore.js:79:11)
r code here
W20150911-13:17:10.424(2)? (STDERR)                         throw(ex);
W20150911-13:17:10.424(2)? (STDERR)                               ^
W20150911-13:17:10.427(2)? (STDERR) TypeError: Cannot call method 'insert' of undefined
W20150911-13:17:10.428(2)? (STDERR)     at app/github_microscope/server/fixtures.js:6:28
W20150911-13:17:10.428(2)? (STDERR)     at app/github_microscope/server/fixtures.js:74:3
W20150911-13:17:10.428(2)? (STDERR)     at /home/sanchezj/microscope/.meteor/local/build/programs/server/boot.js:222:10
W20150911-13:17:10.429(2)? (STDERR)     at Array.forEach (native)
W20150911-13:17:10.429(2)? (STDERR)     at Function._.each._.forEach (/home/sanchezj/.meteor/packages/meteor-tool/.1.1.4.st5tu4++os.linux.x86_32+web.browser+web.cordova/mt-os.linux.x86_32/dev_bundle/server-lib/node_modules/underscore/underscore.js:79:11)
W20150911-13:17:10.429(2)? (STDERR)     at /home/sanchezj/microscope/.meteor/local/build/programs/server/boot.js:117:5
=> Exited with code: 8
=> Your application is crashing. Waiting for file change.

我读了一些类似的问题和一些建议的解决方案,如添加铁路由器包和一些类似的操作,但它没有用。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

看起来你创建了一个项目:

0

然后你克隆了里面的显微镜项目:

$scope.list

当您运行初始meteor create yourproject cd yourproject 语句时,meteor为您创建了一个git clone https://github.com/DiscoverMeteor/Microscope.git 文件夹。此文件夹存储有关应用程序中使用的包的重要信息。

如果您查看克隆的显微镜代码,它已包含meteor create文件夹:https://github.com/DiscoverMeteor/Microscope/tree/master/.meteor

通常,在将meteor项目签入版本控制系统时,应该包含.meteor文件夹,以便可以轻松克隆和运行它,而无需弄清楚应该安装哪些软件包。

因此,要正确运行Microscope,只需将其克隆到新目录(不嵌套在现有meteor目录中),.meteor到目录中,然后运行.meteor

我已经看到了在没有cd文件夹的情况下签入的偶尔项目。在这些情况下,它们通常都有一个README文件,指示您启动自己的项目(使用meteor)并安装他们提供的特定包列表(.meteor)。

始终在回购中查找meteor create yourproject文件夹的存在。如果它在那里,不要创建自己的项目。如果不存在,请创建自己的并克隆到其中。