Skip to content
Advertisement

Why JS async function shows neither print nor error?

My code

JavaScript

In models/Tutorials

JavaScript

When I run my code from terminal,

JavaScript

shows

JavaScript

It seems that promise is not resolved.. Why?

Advertisement

Answer

You probably don’t have a correct connection to your database. If I take your exact code, everything is working fine with a correct connection and behave as described in your question with no connection.

To create a connection call mongoose.connect('mongodb://<db_uri>', {useNewUrlParser: true}); somewhere in your app.

To understand why your code didn’t throw any error and you had no log, you can read more about how mongoose handle connection here

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement