My code
JavaScript
x
15
15
1
const mongoose = require('mongoose');
2
const Tutorial = require('./models/Tutorial');
3
4
async function createTutorial() {
5
try {
6
console.log('guy Incognito');
7
const doc = await Tutorial.create({ title: 'bill ', body: 'Bill Russel was great player!' });
8
console.log(`randomTextabcden${doc}`);
9
} catch (err) {
10
console.log(err);
11
}
12
}
13
14
createTutorial();
15
In models/Tutorials
JavaScript
1
13
13
1
const mongoose = require('mongoose');
2
3
const TutorialSchema = new mongoose.Schema({
4
title: String,
5
body: String,
6
createdAt: {
7
type: Date,
8
default: Date.now,
9
},
10
});
11
12
module.exports = mongoose.model('Tutorial', TutorialSchema);
13
When I run my code from terminal,
JavaScript
1
2
1
node index.js
2
shows
JavaScript
1
2
1
guy Incognito
2
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