Uw MongoDB-URL lijkt onvolledig, deze moet uw dbName
. bevatten voordat het op deze manier in de mangoestverbinding wordt doorgegeven
const url = 'mongodb://localhost:27017/';
const fullUrl = url + dbName; // which should evaluate to this 'mongodb://localhost:27017/ceramo'
mongo.connect(fullUrl, function (err, client) {...}