2

在 Windows Vista 上全新安装 Meteor 0.5.0。我没有得到基本的例子。创建empty'ish hello应用程序后也没有成功。shell 以管理员身份运行。Meteor 识别出我更改了​​源文件,但随后什么也没有。我在文件系统的哪个位置尝试这个并不重要。总是得到

Exited with code: -1073741819:

例如

C:\Users\jawford\Meteor Apps\Examples>meteor create starter3
starter3: created.

To run your new app:
   cd starter3
   meteor

C:\Users\jawford\Meteor Apps\Examples>cd starter3

C:\Users\jawford\Meteor Apps\Examples\starter3>meteor
[[[[[ C:\Users\jawford\Meteor Apps\Examples\starter3 ]]]]]

Running on: http://localhost:3000/
Exited with code: -1073741819
Exited with code: -1073741819
Exited with code: -1073741819
Your application is crashing. Waiting for file change.
=> Modified -- restarting.
Exited with code: -1073741819
Exited with code: -1073741819
Exited with code: -1073741819
Your application is crashing. Waiting for file change.
^CTerminate batch job (Y/N)? y

C:\Users\jawford\Meteor Apps\Examples\starter3>
4

3 回答 3

4

如果您在使用 Windows 8 时遇到此问题,则需要更改节点可执行文件的兼容模式。

  • 转到安装 Meteor 的文件夹
  • bin/node.exe 的打开属性
  • 为 Windows 7 设置兼容模式

您现在应该能够像之前一样启动应用程序。

于 2012-11-29T08:26:18.383 回答
1

这与未正确加载光纤有关。您可以尝试使用 运行app/meteor/meteor.jsbin/node两者都在 Program Files 的 Meteor 目录中。这可能会为您提供更多详细信息,为什么它会崩溃。在文件夹中运行测试也可能很方便,lib/node_modules/fibers这可能会指出 Fibers 行为不端的原因。

于 2012-11-01T17:08:30.747 回答
1

退出代码 -1073741819 对应于 C0000005,表示访问冲突。

许多用户发现将兼容模式设置为“Windows 7”可以解决该问题,但并非总是如此,而且有证据表明它也发生在 Windows 7 上。

调查 win Meteor 0.5.9 上的后续问题,我发现 windows 上的纤维问题可以解释这个问题,我有一个暂定的修复。

请参阅:https ://github.com/TomWij/meteor/issues/66#issuecomment-15994548了解更多详情。

于 2013-04-06T11:32:47.170 回答