Response will not return when trying to save model with Mongoose in Restify API Response will not return when trying to save model with Mongoose in Restify API mongoose mongoose

Response will not return when trying to save model with Mongoose in Restify API


One cause of this issue can be if you have a pre save hook which errors silently.

If you find your model as a .pre('save' () => {...}) function then double check this method is reached after you call save, and that it returns without errors.

Documentation on mongoose middleware can be found here