URL MongoDB Anda tampaknya tidak lengkap, seharusnya menyertakan dbName
Anda sebelum diteruskan ke koneksi luwak seperti ini
const url = 'mongodb://localhost:27017/';
const fullUrl = url + dbName; // which should evaluate to this 'mongodb://localhost:27017/ceramo'
mongo.connect(fullUrl, function (err, client) {...}