Din MongoDB URL ser ud til at være ufuldstændig, den bør indeholde dit dbName
før det sendes ind i mongoose-forbindelsen sådan her
const url = 'mongodb://localhost:27017/';
const fullUrl = url + dbName; // which should evaluate to this 'mongodb://localhost:27017/ceramo'
mongo.connect(fullUrl, function (err, client) {...}