user4523328
user4523328

Reputation:

Meteor instability

I am learning meteor to build an app. I am finding things pretty unstable with Meteor. I am using Ubuntu 14.04 and Meteor 1.0.3

Everything is working fine and I had finished couple of Modules. And Suddenly one day, I get this error:

Can't find npm module 'mailcomposer'. Did you forget to call 'Npm.depends' in package.js within the 'email' package?

I know that 'mailcomposer' package is not there and installed it and worked well.

And again, projects work fine and again one day suddenly I get this error:

Cannot find module 'fibers'.

I really want to know what is happening. I have not removed any module nor did I add one. My project was running fine, but later when I opened the system I got the error. Does meteor remove or update modules automatically in the backend? Rather than fixing these errors, I want to know why modules are suddenly being removed.

I am novice in Meteor, apologies if the question is stupid.

Upvotes: 0

Views: 157

Answers (2)

gone43v3r
gone43v3r

Reputation: 407

Are you switching from 1 node version to another? If you are on the server:

  1. get meteor's node version meteor node -v
  2. verify if the server is using the same node version by node -v

Let me know...

Upvotes: 0

Mário
Mário

Reputation: 1612

I had this issue when I was deploying an Meteor app on Digital Ocean, for some reason I had to reinstall nodejs and fibers package to make it work again.

Upvotes: 0

Related Questions