I am building a web app, which requires use of mongoose-deep-populate
, i have installed it using npm
. But i still get the following error:
Error: Plugin was not installed
at Query.deepPopulate (/Users/nikhilb/nodeapp/tracking_app/node_modules/mongoose-deep-populate/lib/plugin.js:30:15)
at /Users/nikhilb/nodeapp/tracking_app/routes/training.js:38:8
at process._tickCallback (internal/process/next_tick.js:109:7)
Its says pluggin not installed, but in my package.json
file it is installed:
"mongoose": "^5.0.0",
"mongoose-deep-populate": "^3.0.0"
Please help me, thanks in advance.
EDIT:
I have required it as:
var deepPopulate = require('mongoose-deep-populate')(mongoose);