Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Johan Rönkkö
Johan Rönkkö
28,054 Points

Mongoose mpromise depricated fix?

Hi! I'm running express with mongoose. I have a awnserSchema that goes into a questionSchema for QA web app. I'm building upon the REST API from the treehouse course. Anyways, I got this error in my console: "Mongoose: mpromise (mongoose's default promise library) is deprecated, plug in your own promise library instead: http://mongoosejs.com/docs/promises.html", when saving a record like this: req.question.save(function(err, question) { //doing some stuff }. Why is that and how can i fix it?