Reputation: 11
I am currently on a project using the tech stack meteor + react. I have a problem where I can't run the project because of undefined or not resolved modules. For more info look at the picture below. Error got on the console
The server of meteor runs perfectly, but when I access the site on my browser, it got that error. Anyone got into this problem, I need your help. :)
Upvotes: 1
Views: 1726
Reputation: 4132
You have not installed your required node modules. Either run meteor npm install mongo-object, or try npm install to install all missing npm dependencies.
Upvotes: 2