Meteor Error in Windows XP / fiber.node

Hy ..

I installed Meteor successfully on Windows XP. Creating a new project works, but starting a project does not work. Application crashes with the following error:

module.js:485 process.dlopen(filename, module.exports); ^ Error: no errorC:\Programme\Meteor\lib\node_modules\fibers\bin\win32-ia32\fibers.node at Object.Module._extensions..node (module.js:485:11) at Module.load (module.js:356:32) at Function.Module._load (module.js:312:12) at Module.require (module.js:362:17) at require (module.js:378:17) at Object.<anonymous> (C:\Programme\Meteor\lib\node_modules\fibers\fibers.js:13:1) at Module._compile (module.js:449:26) at Object.Module._extensions..js (module.js:467:10) at Module.load (module.js:356:32) at Function.Module._load (module.js:312:12) Exited with code: 1 Your application is crashing. Waiting for file change. 

Environment:

  • Windows XP (SP3)
  • node.js v0.8.3
  • meteor v0.3.7
  • npm v1.1.43

I am very grateful for every advice.

+4
source share
1 answer

I had the same issue, but on Windows 8 Release Preview. It seems the fiber package shipped with Meteor 0.3.7 is not working properly. Here is what worked for me:

First, I opened a command prompt with administrator privileges and went to:

 C:\Program Files\Meteor\lib 

Or in your case:

 C:\Programme\Meteor\lib 

And then just reinstall the fibers:

 npm remove fibers npm install fibers 

Let me know if this works for you.

+5
source

All Articles