The problem with homemade meteor apps

Good morning

I have had this problem for the past few days and am really disappointed with the lack of support / documentation. My error is below:

/USR/shares/Nginx/html/package/programs/server/node_modules/fibers/future.js:245 throw (for example); ^ Error: The module did not register itself. on error (native) on Module.load (module.js: 355: 32) on Function.Module._load (module.js: 310: 12) on Module.require (module.js: 365: 17) on demand (module .js: 384: 17) in Object.Npm.require (/usr/share/nginx/html/bundle/programs/server/boot.js:142:18) when packing / npm - node -aes-gcm / wrapper. js: 2: 1 to / usr / share / nginx / html / bundle / programs / server / packages / npm -node-aes-gcm.js: 33: 4 to / usr / share / nginx / html / bundle / programs / server / packages / npm -node-aes-gcm.js: 42: 39 at /usr/share/nginx/html/bundle/programs/server/boot.js:222:10 error: found forever script with code: 1

fibers -v 1.0.5 node -v 0.12.4 meteor -v 1.1.0.2

Any help is appreciated

+3


source to share


1 answer


Meteor only supports v0.10.36 + node. v0.11.x and v0.12.x are not supported. You are using 0.12.4 .

You will need to downgrade or manage node with nvm to run your application.

There's an open ticket about this on github: https://github.com/meteor/meteor/issues/3666




For those who want to take more effective actions:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.26.1/install.sh | bash # install nvm
nvm install 0.10.36
nvm use 0.10.36
node main.js

      

+3


source







All Articles