Ihre MongoDB-URL scheint unvollständig zu sein, sie sollte Ihren dbName
enthalten bevor es wie folgt in die Mungo-Verbindung geleitet wird
const url = 'mongodb://localhost:27017/';
const fullUrl = url + dbName; // which should evaluate to this 'mongodb://localhost:27017/ceramo'
mongo.connect(fullUrl, function (err, client) {...}