I am building a basic MEAN webapp and new to the stack. The interface works for me, but as soon as I add the following lines to app.js:
var mongoose = require('mongoose'); require('./models/test'); mongoose.connect('mongodb://localhost:3000/design-data-test');
I get the following error in the terminal:
Error: Cannot find module 'debug' at Function.Module._resolveFilename (module.js:336:15) at Function.Module._load (module.js:278:25) at Module.require (module.js:365:17) at require (module.js:384:17) at Object.<anonymous> (/Users/username/node_modules/mongoose/node_modules/mquery/lib/mquery.js:11:13) at Module._compile (module.js:460:26) at Object.Module._extensions..js (module.js:478:10) at Module.load (module.js:355:32) at Function.Module._load (module.js:310:12) at Module.require (module.js:365:17) at require (module.js:384:17)
And all my front end code stops working. Mongodb runs on the default port.
How can I solve this error?
source share